Home
last modified time | relevance | path

Searched refs:BackendStyle (Results 1 – 15 of 15) sorted by relevance

/external/rust/crates/plotters/src/style/
Dcolor.rs4 use plotters_backend::{BackendColor, BackendStyle};
9 pub trait Color: BackendStyle {
58 impl BackendStyle for RGBAColor {
79 impl<P: Palette> BackendStyle for PaletteColor<P> {
95 impl BackendStyle for RGBColor {
110 impl BackendStyle for HSLColor {
Dshape.rs2 use plotters_backend::{BackendColor, BackendStyle};
41 impl BackendStyle for ShapeStyle {
Dtext.rs6 use plotters_backend::{BackendColor, BackendCoord, BackendStyle, BackendTextStyle};
/external/rust/crates/plotters-backend/src/
Dlib.rs70 pub use style::{BackendColor, BackendStyle};
136 fn draw_line<S: BackendStyle>( in draw_line()
150 fn draw_rect<S: BackendStyle>( in draw_rect()
163 fn draw_path<S: BackendStyle, I: IntoIterator<Item = BackendCoord>>( in draw_path() argument
196 fn draw_circle<S: BackendStyle>( in draw_circle()
206 fn fill_polygon<S: BackendStyle, I: IntoIterator<Item = BackendCoord>>( in fill_polygon() argument
Dstyle.rs19 pub trait BackendStyle { trait
29 impl BackendStyle for BackendColor {
/external/rust/crates/plotters/src/drawing/backend_impl/
Dmocked.rs6 BackendColor, BackendCoord, BackendStyle, BackendTextStyle, DrawingBackend, DrawingErrorKind,
149 fn draw_line<S: BackendStyle>( in draw_line()
169 fn draw_rect<S: BackendStyle>( in draw_rect()
190 fn draw_path<S: BackendStyle, I: IntoIterator<Item = BackendCoord>>( in draw_path() argument
209 fn draw_circle<S: BackendStyle>( in draw_circle()
230 fn fill_polygon<S: BackendStyle, I: IntoIterator<Item = BackendCoord>>( in fill_polygon() argument
/external/rust/crates/plotters-backend/src/rasterizer/
Drect.rs1 use crate::{BackendCoord, BackendStyle, DrawingBackend, DrawingErrorKind};
3 pub fn draw_rect<B: DrawingBackend, S: BackendStyle>( in draw_rect()
Dline.rs1 use crate::{BackendCoord, BackendStyle, DrawingBackend, DrawingErrorKind};
3 pub fn draw_line<DB: DrawingBackend, S: BackendStyle>( in draw_line()
Dcircle.rs1 use crate::{BackendCoord, BackendStyle, DrawingBackend, DrawingErrorKind};
86 fn draw_sweep_line<B: DrawingBackend, S: BackendStyle>( in draw_sweep_line()
124 fn draw_annulus<B: DrawingBackend, S: BackendStyle>( in draw_annulus()
275 pub fn draw_circle<B: DrawingBackend, S: BackendStyle>( in draw_circle()
Dpolygon.rs1 use crate::{BackendCoord, BackendStyle, DrawingBackend, DrawingErrorKind};
72 pub fn fill_polygon<DB: DrawingBackend, S: BackendStyle>( in fill_polygon()
/external/rust/crates/plotters-svg/src/
Dsvg.rs7 BackendColor, BackendCoord, BackendStyle, BackendTextStyle, DrawingBackend, DrawingErrorKind,
240 fn draw_line<S: BackendStyle>( in draw_line()
265 fn draw_rect<S: BackendStyle>( in draw_rect()
299 fn draw_path<S: BackendStyle, I: IntoIterator<Item = BackendCoord>>( in draw_path() argument
327 fn fill_polygon<S: BackendStyle, I: IntoIterator<Item = BackendCoord>>( in fill_polygon() argument
353 fn draw_circle<S: BackendStyle>( in draw_circle()
/external/rust/crates/plotters/examples/
Dconsole.rs4 BackendColor, BackendStyle, BackendTextStyle, DrawingBackend, DrawingErrorKind,
89 fn draw_line<S: BackendStyle>( in draw_line()
/external/rust/crates/plotters/benches/benches/
Drasterizer.rs3 use plotters_backend::BackendStyle;
/external/rust/crates/plotters/src/element/
Dbasic_shapes.rs3 use plotters_backend::{BackendCoord, BackendStyle, DrawingBackend, DrawingErrorKind};
/external/rust/crates/plotters/
DCHANGELOG.md237 - New abstraction of backend style with `BackendStyle` trait which should be able to extend easier …