Searched defs:dashes (Results 1 - 6 of 6) sorted by relevance

/inkscape/src/libnrtype/
H A Dfont-style.h23 double* dashes; member in struct:font_style
/inkscape/src/display/
H A Dsodipodi-ctrlrect.cpp106 static double const dashes[2] = {4.0, 4.0}; local
110 if (_dashed) cairo_set_dash(buf->ct, dashes, 2, 0);
130 cairo_set_dash(buf->ct, dashes, 2, 4);
H A Dcanvas-bpath.h79 gdouble dashes[2]; member in struct:SPCanvasBPath
H A Ddrawing-text.cpp237 ng->_pl = phase_length; // used for phase of dots, dashes, and wavy
269 int dashes[16]={ local
337 if(dashes[i]>0){
340 pv += Geom::Point(step * (double)dashes[i], 0.0);
353 pv += Geom::Point(step * -(double)dashes[i], 0.0);
/inkscape/src/widgets/
H A Ddash-selector.cpp33 gchar const *const SPDashSelector::_prefs_path = "/palette/dashes";
45 static double **dashes = NULL; variable
84 while (dashes[np]){ np++;}
86 // Add the dashes to the combobox
88 row[dash_columns.dash] = dashes[i];
89 row[dash_columns.pixbuf] = Glib::wrap(sp_dash_to_pixbuf(dashes[i]));
93 row[dash_columns.dash] = dashes[np-1];
96 this->set_data("pattern", dashes[0]);
115 if (!dashes) {
122 dashes
[all...]
/inkscape/src/extension/internal/
H A Dcairo-render-context.cpp1389 double* dashes =(double*)malloc(ndashes*sizeof(double)); local
1391 dashes[i] = style->stroke_dasharray.values[i];
1393 cairo_set_dash(_cr, dashes, ndashes, style->stroke_dashoffset.value);
1394 free(dashes);

Completed in 17 milliseconds