Home
last modified time | relevance | path

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

/aosp_15_r20/external/rust/android-crates-io/crates/plotters/src/element/
Derrorbar.rs18 fn ending_coord(coord: BackendCoord, w: u32) -> (BackendCoord, BackendCoord); in ending_coord()
45 fn ending_coord(coord: BackendCoord, w: u32) -> (BackendCoord, BackendCoord) { in ending_coord()
61 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()
Dmod.rs267 fn map<CT: CoordTranslate>(coord_trans: &CT, from: &CT::From, rect: &Rect) -> BackendCoord { in map()
285 ) -> (BackendCoord, i32) { in map()
/aosp_15_r20/external/rust/android-crates-io/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()
199 center: BackendCoord, in draw_circle()
225 pos: BackendCoord, in draw_text()
296 pos: BackendCoord, in blit_bitmap()
Dtext.rs242 pos: BackendCoord, in draw()
/aosp_15_r20/external/rust/android-crates-io/crates/plotters-backend/src/rasterizer/
Dpath.rs4 fn get_dir_vector(from: BackendCoord, to: BackendCoord, flag: bool) -> ((f64, f64), (f64, f64)) { in get_dir_vector()
20 fn compute_polygon_vertex(triple: &[BackendCoord; 3], d: f64, buf: &mut Vec<BackendCoord>) { in compute_polygon_vertex()
93 mut op: impl FnMut(BackendCoord), in traverse_vertices()
140 pub fn polygonize(vertices: &[BackendCoord], stroke_width: u32) -> Vec<BackendCoord> { in polygonize()
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()
Drect.rs5 upper_left: BackendCoord, in draw_rect()
6 bottom_right: BackendCoord, in draw_rect()
Dcircle.rs89 (x0, y0): BackendCoord, in draw_sweep_line()
126 center: BackendCoord, in draw_annulus()
277 center: BackendCoord, in draw_circle()
Dline.rs5 mut from: BackendCoord, in draw_line()
6 mut to: BackendCoord, in draw_line()
/aosp_15_r20/external/rust/android-crates-io/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()
/aosp_15_r20/external/rust/android-crates-io/crates/plotters-svg/src/
Dsvg.rs219 point: BackendCoord, in draw_pixel()
243 from: BackendCoord, in draw_line()
244 to: BackendCoord, in draw_line()
268 upper_left: BackendCoord, in draw_rect()
269 bottom_right: BackendCoord, in draw_rect()
356 center: BackendCoord, in draw_circle()
389 pos: BackendCoord, in draw_text()
486 pos: BackendCoord, in blit_bitmap()
/aosp_15_r20/external/rust/android-crates-io/crates/plotters/src/coord/
Dmod.rs64 fn translate(&self, from: &Self::From) -> BackendCoord { in translate()
70 fn reverse_translate(&self, input: BackendCoord) -> Option<BackendCoord> { in reverse_translate()
Dtranslate.rs10 fn translate(&self, from: &Self::From) -> BackendCoord; in translate()
24 fn translate(&self, from: &Self::From) -> BackendCoord { in translate()
/aosp_15_r20/external/rust/android-crates-io/crates/plotters/src/drawing/
Darea.rs229 pub fn get_base_pixel(&self) -> BackendCoord { in get_base_pixel()
330 pub fn map_coordinate(&self, coord: &CT::From) -> BackendCoord { in map_coordinate()
520 pos: BackendCoord, in draw_text()
/aosp_15_r20/external/rust/android-crates-io/crates/plotters/src/chart/context/cartesian2d/
Dmod.rs62 pub fn backend_coord(&self, coord: &(X::ValueType, Y::ValueType)) -> BackendCoord { in backend_coord()
/aosp_15_r20/external/rust/android-crates-io/crates/plotters/src/coord/ranged2d/
Dcartesian.rs116 fn translate(&self, from: &Self::From) -> BackendCoord { in translate()
/aosp_15_r20/external/rust/android-crates-io/crates/plotters/src/coord/ranged3d/
Dcartesian3d.rs123 fn translate(&self, coord: &Self::From) -> BackendCoord { in translate()
/aosp_15_r20/external/rust/android-crates-io/crates/plotters/src/chart/
Dseries.rs61 pub fn legend<E: IntoDynElement<'a, DB, BackendCoord>, T: Fn(BackendCoord) -> E + 'a>( in legend() argument
/aosp_15_r20/external/rust/android-crates-io/crates/plotters/src/style/
Dtext.rs318 pos: BackendCoord, in draw()