Searched defs:stroke_width (Results 1 - 11 of 11) sorted by relevance
/inkscape/src/libnrtype/ |
H A D | font-style.h | 17 double stroke_width; // if 0, the glyph is filled; otherwise stroked member in struct:font_style
|
/inkscape/src/live_effects/ |
H A D | lpe-show_handles.h | 48 double stroke_width; member in class:Inkscape::LivePathEffect::LPEShowHandles
|
/inkscape/share/extensions/ |
H A D | printing_marks.py | 36 stroke_width = 0.25 variable in class:Printing_Marks 98 style = { 'stroke': '#000000', 'stroke-width': str(self.stroke_width), 106 style = { 'stroke': '#000000', 'stroke-width': str(self.stroke_width),
|
H A D | pixelsnap.py | 152 stroke_width = self.stroke_width(elem) 153 if stroke_width == 0: return 0 # if there's no stroke, no need to worry about the transform 159 stroke_width = transform_dimensions(transform, width=stroke_width) 161 return (stroke_width/2) 163 def stroke_width(self, elem, setval=None): member in class:PixelSnapEffect 170 stroke_width = 0 172 stroke_width = self.unittouu(style.get('stroke-width', '').strip()) 178 return stroke_width [all...] |
/inkscape/src/display/ |
H A D | canvas-bpath.h | 78 gdouble stroke_width; member in struct:SPCanvasBPath
|
H A D | nr-style.h | 65 float stroke_width; member in struct:NRStyle
|
H A D | cairo-utils.cpp | 642 feed_path_to_cairo (cairo_t *ct, Geom::Path const &path, Geom::Affine trans, Geom::OptRect area, bool optimize_stroke, double stroke_width) argument 652 view.expandBy (stroke_width); 690 feed_pathvector_to_cairo (cairo_t *ct, Geom::PathVector const &pathv, Geom::Affine trans, Geom::OptRect area, bool optimize_stroke, double stroke_width) argument 698 feed_path_to_cairo(ct, *it, trans, area, optimize_stroke, stroke_width);
|
/inkscape/src/ |
H A D | sp-hatch-path.cpp | 131 if (style->stroke_width.unit == SP_CSS_UNIT_PERCENT) { 136 style->stroke_width.computed = style->stroke_width.value * aw; 209 gdouble stroke_width = style->stroke_width.computed; local 210 result.setMin(bbox->left() - stroke_width / 2); 211 result.setMax(bbox->right() + stroke_width / 2);
|
H A D | style.h | 228 SPILength stroke_width; member in class:SPStyle
|
/inkscape/src/ui/tools/ |
H A D | freehand-base.cpp | 250 double stroke_width = 1.0; local 256 stroke_width = style.stroke_width.computed; 261 s << points[0][Geom::X] << "," << stroke_width / 2.; 943 double stroke_width = 3.0; local 948 stroke_width = style.stroke_width.computed; 978 sp_repr_set_svg_double (repr, "sodipodi:rx", rad * stroke_width); 979 sp_repr_set_svg_double (repr, "sodipodi:ry", rad * stroke_width);
|
H A D | measure-tool.cpp | 219 std::stringstream stroke_width; local 220 stroke_width.imbue(std::locale::classic()); 222 stroke_width << strokewidth / desktop->current_zoom(); 224 stroke_width << strokewidth; 226 sp_repr_css_set_property (css, "stroke-width", stroke_width.str().c_str());
|
Completed in 35 milliseconds