Searched refs:to_backend_color (Results 1 – 8 of 8) sorted by relevance
/external/rust/crates/plotters/src/style/ |
D | color.rs | 11 fn to_backend_color(&self) -> BackendColor; in to_backend_color() method 16 self.to_backend_color().rgb in rgb() 22 self.to_backend_color().alpha in alpha() 57 fn to_backend_color(&self) -> BackendColor { in to_backend_color() method 58 <T as Color>::to_backend_color(*self) in to_backend_color() 69 fn to_backend_color(&self) -> BackendColor { in to_backend_color() method 89 fn to_backend_color(&self) -> BackendColor { in to_backend_color() method 103 self.to_backend_color() in color() 109 fn to_backend_color(&self) -> BackendColor { in to_backend_color() method 118 self.to_backend_color() in color() [all …]
|
D | text.rs | 27 new_color: Some(color.to_backend_color()), in with_color() 80 color: color.to_backend_color(), in color() 203 color: BLACK.to_backend_color(), in from()
|
D | shape.rs | 43 self.color.to_backend_color() in color()
|
/external/rust/crates/plotters/src/element/ |
D | basic_shapes.rs | 36 return backend.draw_pixel((x, y), self.style.color.to_backend_color()); in draw() 323 backend.fill_polygon(points, &self.style.color.to_backend_color()) in draw()
|
D | points.rs | 97 backend.fill_polygon(points, &self.style.color.to_backend_color())?; in draw()
|
D | boxplot.rs | 225 &self.style.color.to_backend_color(), in draw()
|
/external/rust/crates/plotters/src/style/font/ |
D | font_desc.rs | 93 color: color.to_backend_color(), in color()
|
/external/rust/crates/plotters/src/drawing/ |
D | area.rs | 289 &color.to_backend_color(), in fill() 302 self.backend_ops(|b| b.draw_pixel(pos, color.to_backend_color())) in draw_pixel()
|