/inkscape/src/ |
H A D | sp-item-transform.h | 13 Geom::Affine get_scale_transform_for_uniform_stroke (Geom::Rect const &bbox_visual, double stroke_x, double stroke_y, bool transform_stroke, bool preserve, double x0, double y0, double x1, double y1); 14 Geom::Affine get_scale_transform_for_variable_stroke (Geom::Rect const &bbox_visual, Geom::Rect const &bbox_geom, bool transform_stroke, bool preserve, double x0, double y0, double x1, double y1); 15 Geom::Rect get_visual_bbox (Geom::OptRect const &initial_geom_bbox, Geom::Affine const &abs_affine, double const initial_strokewidth, bool const transform_stroke);
|
H A D | sp-item-transform.cpp | 91 * @param transform_stroke If true then the stroke will be scaled proportional to the square root of the area of the geometric bounding box 101 Geom::Affine get_scale_transform_for_uniform_stroke(Geom::Rect const &bbox_visual, gdouble stroke_x, gdouble stroke_y, bool transform_stroke, bool preserve, gdouble x0, gdouble y0, gdouble x1, gdouble y1) argument 159 scale_x = transform_stroke ? 1 : scale_y; 164 scale_y = transform_stroke ? 1 : scale_x; 168 if (transform_stroke && !preserve) { 194 } else if (!transform_stroke && !preserve) { // scale the geometric bbox with constant stroke 198 } else if (!transform_stroke) { // 'Preserve Transforms' was chosen. 246 * @param transform_stroke If true then the stroke will be scaled proportional to the square root of the area of the geometric bounding box 256 Geom::Affine get_scale_transform_for_variable_stroke(Geom::Rect const &bbox_visual, Geom::Rect const &bbox_geom, bool transform_stroke, bool preserve, gdouble x0, gdouble y0, gdouble x1, gdouble y1) argument 318 scale_x = transform_stroke [all...] |
H A D | seltrans.cpp | 1490 bool transform_stroke = prefs->getBool("/options/transform/stroke", true); local 1492 Geom::Affine abs_affine = get_scale_transform_for_uniform_stroke (*_bbox, _strokewidth, _strokewidth, transform_stroke, preserve, 1530 bool transform_stroke = false; local 1537 transform_stroke = prefs->getBool("/options/transform/stroke", true); 1543 _absolute_affine = get_scale_transform_for_uniform_stroke (*_visual_bbox, stroke_x, stroke_y, transform_stroke, preserve, 1557 bool const transform_stroke = prefs->getBool("/options/transform/stroke", true); local 1559 Geom::Rect visual_bbox = get_visual_bbox(_geometric_bbox, _absolute_affine, _strokewidth, transform_stroke);
|
/inkscape/src/extension/internal/ |
H A D | metafile-inout.cpp | 216 bool transform_stroke = prefs->getBool("/options/transform/stroke", true); local 229 prefs->setBool("/options/transform/stroke", transform_stroke);
|
/inkscape/src/live_effects/parameter/ |
H A D | powerstrokepointarray.cpp | 49 bool transform_stroke = prefs ? prefs->getBool("/options/transform/stroke", true) : true; local 50 if (transform_stroke) {
|
/inkscape/src/live_effects/ |
H A D | lpe-patternalongpath.cpp | 264 bool transform_stroke = prefs ? prefs->getBool("/options/transform/stroke", true) : true; local 265 if (transform_stroke && !scale_y_rel) {
|
/inkscape/src/ui/dialog/ |
H A D | transformation.cpp | 810 bool transform_stroke = prefs->getBool("/options/transform/stroke", true); local 834 Geom::Affine scaler = get_scale_transform_for_variable_stroke (*bbox_pref, *bbox_geom, transform_stroke, preserve, x0, y0, x1, y1); 857 Geom::Affine scaler = get_scale_transform_for_variable_stroke (*bbox_pref, *bbox_geom, transform_stroke, preserve, x0, y0, x1, y1);
|
H A D | document-properties.cpp | 1718 bool transform_stroke = prefs->getBool("/options/transform/stroke", true); 1744 prefs->setBool("/options/transform/stroke", transform_stroke);
|
/inkscape/src/widgets/ |
H A D | select-toolbar.cpp | 246 bool transform_stroke = prefs->getBool("/options/transform/stroke", true); local 251 scaler = get_scale_transform_for_variable_stroke (*bbox_vis, *bbox_geom, transform_stroke, preserve, x0, y0, x1, y1); 563 InkToggleAction* itact = ink_toggle_action_new( "transform_stroke",
|