Home
last modified time | relevance | path

Searched refs:MeshLine (Results 1 – 5 of 5) sorted by relevance

/external/rust/crates/plotters/src/coord/ranged2d/
Dcartesian.rs47 DrawMesh: FnMut(MeshLine<X, Y>) -> Result<(), E>, in draw_mesh()
63 draw_mesh(MeshLine::XMesh( in draw_mesh()
72 draw_mesh(MeshLine::YMesh( in draw_mesh()
134 pub enum MeshLine<'a, X: Ranged, Y: Ranged> { enum
139 impl<'a, X: Ranged, Y: Ranged> MeshLine<'a, X, Y> { implementation
147 MeshLine::XMesh(a, b, _) => (a, b), in draw()
148 MeshLine::YMesh(a, b, _) => (a, b), in draw()
/external/rust/crates/plotters/src/coord/
Dmod.rs49 pub use super::ranged2d::cartesian::{Cartesian2d, MeshLine};
/external/rust/crates/plotters/src/chart/
Dmesh.rs5 use crate::coord::cartesian::{Cartesian2d, MeshLine};
469 MeshLine::XMesh(_, _, v) => Some((self.format_x)(v)), in draw()
470 MeshLine::YMesh(_, _, v) => Some((self.format_y)(v)), in draw()
Dcontext.rs7 use crate::coord::cartesian::{Cartesian2d, Cartesian3d, MeshLine};
166 FmtLabel: FnMut(&MeshLine<X, Y>) -> Option<String>, in draw_mesh_lines()
174 MeshLine::XMesh((x, _), _, _) => { in draw_mesh_lines()
180 MeshLine::YMesh((_, y), _, _) => { in draw_mesh_lines()
478 FmtLabel: FnMut(&MeshLine<X, Y>) -> Option<String>,
/external/rust/crates/plotters/src/drawing/
Darea.rs1 use crate::coord::cartesian::{Cartesian2d, MeshLine};
196 DrawFunc: FnMut(&mut DB, MeshLine<X, Y>) -> Result<(), DrawingErrorKind<DB::ErrorType>>, in draw_mesh()