/inkscape/share/extensions/ |
H A D | render_gear_rack.py | 58 "-s", "--spacing", 60 dest="spacing", default=10., 70 spacing = self.unittouu(str(self.options.spacing) + 'px') 76 tas = tan(angle) * spacing 80 points.append((x + tas, spacing)) 81 points.append((x + spacing, spacing)) 82 points.append((x + spacing + tas, 0)) 83 x += spacing * [all...] |
H A D | hershey.py | 72 w = 0 #Initial spacing offset 73 spacing = 3 # spacing between letters 80 w += 2*spacing 88 v = spacing * (15*p - 67 ) 92 w += 5*spacing 96 w += 5*spacing
|
H A D | replace_font.py | 133 die(_('Couldn\'t find anything using that font, please ensure the spelling and spacing is correct.'))
|
H A D | render_barcode_datamatrix.py | 631 def render_data_matrix( module_arrays, size, spacing, parent): 642 draw_SVG_square((size,size), (x*size + i*spacing,y*size), parent)
|
/inkscape/src/ |
H A D | graphlayout.cpp | 116 // 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 D | conn-avoid-ref.cpp | 283 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/live_effects/ |
H A D | lpe-patternalongpath.h | 58 ScalarParam spacing; member in class:Inkscape::LivePathEffect::LPEPatternAlongPath
|
H A D | lpe-patternalongpath.cpp | 80 spacing(_("Spa_cing:"), 83 "spacing", &wr, this, 0), 98 registerParameter( dynamic_cast<Parameter *>(&spacing) ); 151 double xspace = spacing; 166 // spacing.param_set_range(-.9, Geom::infinity()); 168 // spacing.param_set_range(-pattBndsX.extent()*.9, Geom::infinity());
|
/inkscape/src/display/ |
H A D | canvas-grid.cpp | 476 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...] |
H A D | canvas-grid.h | 138 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 */
|
/inkscape/share/extensions/Barcode/ |
H A D | BaseEan.py | 74 def space(self, *spacing): 77 for space in spacing:
|
/inkscape/src/libnrtype/ |
H A D | FontFactory.h | 132 int size=10, int spacing=0);
|
/inkscape/doc/ |
H A D | keys.css | 35 letter-spacing: -0.02em; 63 letter-spacing: 0.4em;
|
/inkscape/src/extension/internal/ |
H A D | grid.cpp | 57 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 D | grid.cpp | 57 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/widgets/ |
H A D | connector-toolbar.cpp | 183 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 D | icon.cpp | 1515 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 D | text-tool.cpp | 768 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"));\
|