Home
last modified time | relevance | path

Searched refs:to_backend_color (Results 1 – 8 of 8) sorted by relevance

/external/rust/crates/plotters/src/style/
Dcolor.rs11 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 …]
Dtext.rs27 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()
Dshape.rs43 self.color.to_backend_color() in color()
/external/rust/crates/plotters/src/element/
Dbasic_shapes.rs36 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()
Dpoints.rs97 backend.fill_polygon(points, &self.style.color.to_backend_color())?; in draw()
Dboxplot.rs225 &self.style.color.to_backend_color(), in draw()
/external/rust/crates/plotters/src/style/font/
Dfont_desc.rs93 color: color.to_backend_color(), in color()
/external/rust/crates/plotters/src/drawing/
Darea.rs289 &color.to_backend_color(), in fill()
302 self.backend_ops(|b| b.draw_pixel(pos, color.to_backend_color())) in draw_pixel()