Searched defs:spacing (Results 1 - 10 of 10) sorted by relevance

/inkscape/src/live_effects/
H A Dlpe-patternalongpath.h58 ScalarParam spacing; member in class:Inkscape::LivePathEffect::LPEPatternAlongPath
/inkscape/src/extension/internal/
H A Dgrid.cpp57 Geom::Point const &offset, Geom::Point const &spacing)
68 start_point[axis] += spacing[axis]) {
56 build_lines(Geom::Rect bounding_area, Geom::Point const &offset, Geom::Point const &spacing) argument
/inkscape/src/extension/plugins/grid2/
H A Dgrid.cpp57 Geom::Point const &offset, Geom::Point const &spacing)
71 start_point[axis] += spacing[axis]) {
56 build_lines(Geom::Rect bounding_area, Geom::Point const &offset, Geom::Point const &spacing) argument
/inkscape/src/display/
H A Dcanvas-grid.h138 Geom::Point spacing; /**< Spacing between elements of the grid */ member in class:Inkscape::CanvasXYGrid
143 Geom::Point sw; /**< Transformed spacing by the affine for the zoom */
H A Dcanvas-grid.cpp476 spacing[Geom::X] = Inkscape::Util::Quantity::convert(prefs->getDouble("/options/grids/xy/spacing_x", 0.0), gridunit, "px");
477 spacing[Geom::Y] = Inkscape::Util::Quantity::convert(prefs->getDouble("/options/grids/xy/spacing_y", 0.0), gridunit, "px");
584 if( spacing[Geom::X] <= 0.0 )
585 spacing[Geom::X] = 1.0;
592 spacing[Geom::X] = q.value("px");
595 spacing[Geom::X] = q.quantity * scale_x;
603 if( spacing[Geom::Y] <= 0.0 )
604 spacing[Geom::Y] = 1.0;
611 spacing[Geom::Y] = q.value("px");
614 spacing[Geo
1027 double spacing; local
[all...]
/inkscape/src/
H A Dgraphlayout.cpp116 // add the connector spacing to the size of node bounding boxes
119 double spacing = 0; local
120 if(desktop) spacing = desktop->namedview->connector_spacing+0.1;
135 rs.push_back(new Rectangle(ll[0]-spacing,ur[0]+spacing,
136 ll[1]-spacing,ur[1]+spacing));
H A Dconn-avoid-ref.cpp283 double spacing = desktop->namedview->connector_spacing; local
298 prev_parallel_hull_edge.setOrigin(hull_edge.origin()+hull_edge.versor().ccw()*spacing);
305 parallel_hull_edge.setOrigin(hull_edge.origin()+hull_edge.versor().ccw()*spacing);
/inkscape/src/widgets/
H A Dconnector-toolbar.cpp183 if ( !repr->attribute("inkscape:connector-spacing") &&
199 sp_repr_set_css_double(repr, "inkscape:connector-spacing", gtk_adjustment_get_value(adj));
214 _("Change connector spacing"));
265 && (strcmp(name, "inkscape:connector-spacing") == 0) ) {
266 GtkAdjustment *adj = static_cast<GtkAdjustment*>(g_object_get_data(G_OBJECT(tbl), "spacing"));
267 gdouble spacing = defaultConnSpacing; local
268 sp_repr_get_double(repr, "inkscape:connector-spacing", &spacing);
270 gtk_adjustment_set_value(adj, spacing);
356 "/tools/connector/spacing", defaultConnSpacin
[all...]
H A Dicon.cpp1515 int spacing = 4; local
1516 for ( int y = 0; y < height; y += spacing ) {
1518 for ( int x = 0; x < width; x += spacing ) {
1524 ptr += bytesPerPixel * (spacing - 1);
/inkscape/src/ui/tools/
H A Dtext-tool.cpp768 double spacing = sp_te_get_average_linespacing(this->text); local
770 screenlines = (int) floor(fabs(d.min()[Geom::Y] - d.max()[Geom::Y])/spacing) - 1;
1164 DocumentUndo::maybeDone(desktop->getDocument(), "linespacing:dec", SP_VERB_CONTEXT_TEXT, _("Contract line spacing"));
1170 DocumentUndo::maybeDone(desktop->getDocument(), "letterspacing:dec", SP_VERB_CONTEXT_TEXT, _("Contract letter spacing"));
1187 DocumentUndo::maybeDone(desktop->getDocument(), "linespacing:inc", SP_VERB_CONTEXT_TEXT, _("Expand line spacing"));
1193 DocumentUndo::maybeDone(desktop->getDocument(), "letterspacing:inc", SP_VERB_CONTEXT_TEXT, _("Expand letter spacing"));\

Completed in 41 milliseconds