Home
last modified time | relevance | path

Searched refs:stroke_width (Results 1 – 25 of 38) sorted by relevance

12

/external/rust/crates/plotters/src/style/
Dshape.rs9 pub stroke_width: u32, field
18 stroke_width: self.stroke_width, in filled()
22 pub fn stroke_width(&self, width: u32) -> Self { in stroke_width() method
26 stroke_width: width, in stroke_width()
36 stroke_width: 1, in from()
45 fn stroke_width(&self) -> u32 { in stroke_width() method
46 self.stroke_width in stroke_width()
Dcolor.rs45 fn stroke_width(&self, width: u32) -> ShapeStyle in stroke_width() method
49 Into::<ShapeStyle>::into(self).stroke_width(width) in stroke_width()
/external/ImageMagick/coders/
Dlabel.c150 image->columns=(size_t) floor(metrics.width+draw_info->stroke_width+0.5); in ReadLABELImage()
151 image->rows=(size_t) floor(metrics.height+draw_info->stroke_width+0.5); in ReadLABELImage()
177 width=(size_t) floor(metrics.width+draw_info->stroke_width+0.5); in ReadLABELImage()
178 height=(size_t) floor(metrics.height+draw_info->stroke_width+0.5); in ReadLABELImage()
207 width=(size_t) floor(metrics.width+draw_info->stroke_width+0.5); in ReadLABELImage()
208 height=(size_t) floor(metrics.height+draw_info->stroke_width+0.5); in ReadLABELImage()
237 image->columns=(size_t) floor(metrics.width+draw_info->stroke_width+0.5); in ReadLABELImage()
239 image->columns=(size_t) floor(draw_info->pointsize+draw_info->stroke_width+ in ReadLABELImage()
242 image->rows=(size_t) floor(metrics.height+draw_info->stroke_width+0.5); in ReadLABELImage()
244 image->rows=(size_t) floor(draw_info->pointsize+draw_info->stroke_width+ in ReadLABELImage()
Dcaption.c184 image->columns=(size_t) floor(metrics.width+draw_info->stroke_width+0.5); in ReadCAPTIONImage()
199 draw_info->interline_spacing+draw_info->stroke_width)+0.5); in ReadCAPTIONImage()
252 width=(size_t) floor(metrics.width+draw_info->stroke_width+0.5); in ReadCAPTIONImage()
254 draw_info->stroke_width+0.5); in ReadCAPTIONImage()
282 width=(size_t) floor(metrics.width+draw_info->stroke_width+0.5); in ReadCAPTIONImage()
284 draw_info->stroke_width+0.5); in ReadCAPTIONImage()
/external/rust/crates/plotters-backend/src/rasterizer/
Dpath.rs104 pub fn polygonize(vertices: &[BackendCoord], stroke_width: u32) -> Vec<BackendCoord> { in polygonize()
111 traverse_vertices(vertices.iter(), stroke_width, |v| ret.push(v)); in polygonize()
112 traverse_vertices(vertices.iter().rev(), stroke_width, |v| ret.push(v)); in polygonize()
Dline.rs13 if style.stroke_width() != 1 { in draw_line()
24 let r = f64::from(style.stroke_width()) / 2.0; in draw_line()
Dcircle.rs286 if !fill && style.stroke_width() != 1 { in draw_circle()
287 let inner_radius = radius - (style.stroke_width() / 2).min(radius); in draw_circle()
288 radius += style.stroke_width() / 2; in draw_circle()
/external/rust/crates/plotters/src/drawing/backend_impl/
Dmocked.rs160 checker(color, style.stroke_width(), from, to); in draw_line()
181 checker(color, style.stroke_width(), fill, upper_left, bottom_right); in draw_rect()
200 checker(color, style.stroke_width(), path.into_iter().collect()); in draw_path()
221 checker(color, style.stroke_width(), fill, center, radius); in draw_circle()
/external/igt-gpu-tools/overlay/
Dchart.c44 chart->stroke_width = 2; in chart_init()
61 chart->stroke_width = width; in chart_set_stroke_width()
215 cairo_set_line_width(cr, chart->stroke_width); in chart_draw()
Dchart.h45 double stroke_width; member
/external/rust/crates/criterion/src/plot/plotters_backend/
Ddistributions.rs103 DARK_BLUE.mix(0.25).filled().stroke_width(3), in abs_distribution()
114 DARK_BLUE.filled().stroke_width(3), in abs_distribution()
257 DARK_BLUE.mix(0.25).filled().stroke_width(3), in rel_distribution()
268 DARK_BLUE.filled().stroke_width(3), in rel_distribution()
Dregression.rs89 DARK_BLUE.filled().stroke_width(2), in regression_figure()
206 PathElement::new(vec![(x, y), (x + 20, y)], DARK_RED.filled().stroke_width(2)) in regression_comparison_figure()
223 DARK_BLUE.filled().stroke_width(2), in regression_comparison_figure()
Dpdf.rs92 DARK_RED.filled().stroke_width(2), in pdf_comparison_figure()
101 DARK_BLUE.filled().stroke_width(2), in pdf_comparison_figure()
166 DARK_BLUE.filled().stroke_width(2), in pdf_small()
Dt_test.rs52 DARK_BLUE.filled().stroke_width(2), in t_test()
/external/rust/crates/plotters-backend/src/
Dstyle.rs24 fn stroke_width(&self) -> u32 { in stroke_width() method
Dlib.rs172 if style.stroke_width() == 1 { in draw_path()
185 let v = rasterizer::polygonize(&p[..], style.stroke_width()); in draw_path()
/external/rust/crates/plotters/src/element/
Derrorbar.rs136 let v = ErrorBar::new_vertical(100, 20, 50, 70, WHITE.filled().stroke_width(5), 3); in test_preserve_stroke_width()
137 let h = ErrorBar::new_horizontal(100, 20, 50, 70, WHITE.filled().stroke_width(5), 3); in test_preserve_stroke_width()
Dbasic_shapes.rs119 Into::<ShapeStyle>::into(&BLUE).stroke_width(5), in test_path_element()
203 Color::stroke_width(&BLUE, 5), in test_rect_element()
/external/freetype/src/cid/
Dcidtoken.h75 T1_FIELD_FIXED( "StrokeWidth", stroke_width, 0 )
/external/freetype/src/type1/
Dt1tokens.h109 T1_FIELD_FIXED( "StrokeWidth", stroke_width, T1_FIELD_DICT_FONTDICT )
/external/freetype/include/freetype/internal/
Dt1types.h127 FT_Fixed stroke_width; member
/external/rust/crates/plotters/src/series/
Dline_series.rs82 Into::<ShapeStyle>::into(&RED).stroke_width(3), in test_line_series()
/external/freetype/src/cff/
Dcfftoken.h40 CFF_FIELD_NUM ( 0x108, stroke_width, "StrokeWidth" )
/external/ImageMagick/MagickCore/
Ddraw.h224 stroke_width; member
/external/rust/crates/plotters-svg/src/
Dsvg.rs254 ("stroke-width", &format!("{}", style.stroke_width())), in draw_line()
313 ("stroke-width", &format!("{}", style.stroke_width())), in draw_path()
377 ("stroke-width", &format!("{}", style.stroke_width())), in draw_circle()

12