Home
last modified time | relevance | path

Searched defs:BackendCoord (Results 1 – 19 of 19) sorted by relevance

/external/rust/crates/plotters-backend/src/rasterizer/
Dpath.rs3 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()
Drect.rs5 upper_left: BackendCoord, in draw_rect()
6 bottom_right: BackendCoord, in draw_rect()
Dline.rs5 mut from: BackendCoord, in draw_line()
6 mut to: BackendCoord, in draw_line()
Dpolygon.rs14 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()
Dcircle.rs89 (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/
Derrorbar.rs12 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()
Dboxplot.rs14 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/
Dlib.rs77 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()
Dtext.rs241 pos: BackendCoord, in draw()
/external/rust/crates/plotters/src/coord/
Dtranslate.rs9 fn translate(&self, from: &Self::From) -> BackendCoord; in translate()
18 fn translate(&self, from: &Self::From) -> BackendCoord { in translate()
Dmod.rs62 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/
Dmocked.rs133 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/
Dsvg.rs218 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/
Dcartesian.rs116 fn translate(&self, from: &Self::From) -> BackendCoord { in translate()
/external/rust/crates/plotters/src/drawing/
Darea.rs225 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/
Dcartesian3d.rs101 fn translate(&self, coord: &Self::From) -> BackendCoord { in translate()
/external/rust/crates/plotters/src/style/
Dtext.rs174 pos: BackendCoord, in draw()
/external/rust/crates/plotters/src/chart/
Dseries.rs48 pub fn legend<E: IntoDynElement<'a, DB, BackendCoord>, T: Fn(BackendCoord) -> E + 'a>( in legend() argument
Dcontext.rs151 pub fn backend_coord(&self, coord: &(X::ValueType, Y::ValueType)) -> BackendCoord { in backend_coord()