/external/rust/crates/plotters-backend/src/rasterizer/ |
D | path.rs | 3 fn get_dir_vector(from: BackendCoord, to: BackendCoord, flag: bool) -> ((f64, f64), (f64, f64)) { in get_dir_vector() 16 fn compute_polygon_vertex(triple: &[BackendCoord; 3], d: f64) -> BackendCoord { in compute_polygon_vertex() 59 mut op: impl FnMut(BackendCoord), in traverse_vertices() 104 pub fn polygonize(vertices: &[BackendCoord], stroke_width: u32) -> Vec<BackendCoord> { in polygonize()
|
D | rect.rs | 5 upper_left: BackendCoord, in draw_rect() 6 bottom_right: BackendCoord, in draw_rect()
|
D | line.rs | 5 mut from: BackendCoord, in draw_line() 6 mut to: BackendCoord, in draw_line()
|
D | polygon.rs | 14 fn horizontal_sweep(mut from: BackendCoord, mut to: BackendCoord) -> Option<Edge> { in horizontal_sweep() 31 fn vertical_sweep(from: BackendCoord, to: BackendCoord) -> Option<Edge> { in vertical_sweep() 74 vertices: &[BackendCoord], in fill_polygon()
|
D | circle.rs | 89 (x0, y0): BackendCoord, in draw_sweep_line() 126 center: BackendCoord, in draw_annulus() 277 center: BackendCoord, in draw_circle()
|
/external/rust/crates/plotters/src/element/ |
D | errorbar.rs | 12 fn ending_coord(coord: BackendCoord, w: u32) -> (BackendCoord, BackendCoord); in ending_coord() 27 fn ending_coord(coord: BackendCoord, w: u32) -> (BackendCoord, BackendCoord) { in ending_coord() 43 fn ending_coord(coord: BackendCoord, w: u32) -> (BackendCoord, BackendCoord) { in ending_coord()
|
D | boxplot.rs | 14 fn with_offset(coord: BackendCoord, offset: f64) -> BackendCoord; in with_offset() 31 fn with_offset(coord: BackendCoord, offset: f64) -> BackendCoord { in with_offset() 44 fn with_offset(coord: BackendCoord, offset: f64) -> BackendCoord { in with_offset()
|
/external/rust/crates/plotters-backend/src/ |
D | lib.rs | 77 pub type BackendCoord = (i32, i32); typedef 128 point: BackendCoord, in draw_pixel() 138 from: BackendCoord, in draw_line() 139 to: BackendCoord, in draw_line() 152 upper_left: BackendCoord, in draw_rect() 153 bottom_right: BackendCoord, in draw_rect() 198 center: BackendCoord, in draw_circle() 224 pos: BackendCoord, in draw_text() 295 pos: BackendCoord, in blit_bitmap()
|
D | text.rs | 241 pos: BackendCoord, in draw()
|
/external/rust/crates/plotters/src/coord/ |
D | translate.rs | 9 fn translate(&self, from: &Self::From) -> BackendCoord; in translate() 18 fn translate(&self, from: &Self::From) -> BackendCoord { in translate()
|
D | mod.rs | 62 fn translate(&self, from: &Self::From) -> BackendCoord { in translate() 68 fn reverse_translate(&self, input: BackendCoord) -> Option<BackendCoord> { in reverse_translate()
|
/external/rust/crates/plotters/src/drawing/backend_impl/ |
D | mocked.rs | 133 point: BackendCoord, in draw_pixel() 151 from: BackendCoord, in draw_line() 152 to: BackendCoord, in draw_line() 171 upper_left: BackendCoord, in draw_rect() 172 bottom_right: BackendCoord, in draw_rect() 211 center: BackendCoord, in draw_circle() 253 pos: BackendCoord, in draw_text()
|
/external/rust/crates/plotters-svg/src/ |
D | svg.rs | 218 point: BackendCoord, in draw_pixel() 242 from: BackendCoord, in draw_line() 243 to: BackendCoord, in draw_line() 267 upper_left: BackendCoord, in draw_rect() 268 bottom_right: BackendCoord, in draw_rect() 355 center: BackendCoord, in draw_circle() 388 pos: BackendCoord, in draw_text() 485 pos: BackendCoord, in blit_bitmap()
|
/external/rust/crates/plotters/src/coord/ranged2d/ |
D | cartesian.rs | 116 fn translate(&self, from: &Self::From) -> BackendCoord { in translate()
|
/external/rust/crates/plotters/src/drawing/ |
D | area.rs | 225 pub fn get_base_pixel(&self) -> BackendCoord { in get_base_pixel() 324 pub fn map_coordinate(&self, coord: &CT::From) -> BackendCoord { in map_coordinate() 514 pos: BackendCoord, in draw_text()
|
/external/rust/crates/plotters/src/coord/ranged3d/ |
D | cartesian3d.rs | 101 fn translate(&self, coord: &Self::From) -> BackendCoord { in translate()
|
/external/rust/crates/plotters/src/style/ |
D | text.rs | 174 pos: BackendCoord, in draw()
|
/external/rust/crates/plotters/src/chart/ |
D | series.rs | 48 pub fn legend<E: IntoDynElement<'a, DB, BackendCoord>, T: Fn(BackendCoord) -> E + 'a>( in legend() argument
|
D | context.rs | 151 pub fn backend_coord(&self, coord: &(X::ValueType, Y::ValueType)) -> BackendCoord { in backend_coord()
|