Searched defs:newx (Results 1 - 8 of 8) sorted by relevance

/inkscape/src/live_effects/parameter/
H A Darray.cpp23 double newx = Geom::infinity(); local
24 sp_svg_number_read_d(str, &newx);
25 return newx;
32 float newx = Geom::infinity(); local
33 sp_svg_number_read_f(str, &newx);
34 return newx;
42 double newx, newy; local
43 unsigned int success = sp_svg_number_read_d(strarray[0], &newx);
47 return Geom::Point(newx, newy);
H A Dpoint.cpp90 double newx, newy; local
91 unsigned int success = sp_svg_number_read_d(strarray[0], &newx);
95 param_setValue( Geom::Point(newx, newy) );
/inkscape/src/xml/
H A Drepr-util.cpp579 double newx, newy; local
580 newx = g_ascii_strtod(strarray[0], NULL);
583 *val = Geom::Point(newx, newy);
/inkscape/src/
H A Ddesktop-events.cpp231 double newx = event_dt.x(); local
236 newx = newx * root->viewBox.width() / root->width.computed;
239 sp_repr_set_point(repr, "position", Geom::Point( newx, newy ));
H A Dsp-guide.cpp133 double newx, newy; local
134 unsigned int success = sp_svg_number_read_d(strarray[0], &newx);
137 if (success == 2 && (fabs(newx) > 1e-6 || fabs(newy) > 1e-6)) {
138 Geom::Point direction(newx, newy);
156 double newx, newy; local
157 unsigned int success = sp_svg_number_read_d(strarray[0], &newx);
167 newx = newx * vbunit2px;
170 newx = newx * roo
208 double newx = pt1.x(); local
368 double newx = point_on_line.x(); local
[all...]
/inkscape/src/ui/tools/
H A Dmeasure-tool.cpp416 double newx, newy; local
417 unsigned int success = sp_svg_number_read_d(strarray[0], &newx);
421 Geom::Point point_data(newx, newy);
/inkscape/src/extension/internal/
H A Dtext_reassemble.c1937 double newx,newy,tmpx; local
1982 newx = 1.25*(ldir == LDIR_RL ? bri->rects[tsp->rt_tidx].xur : bri->rects[tsp->rt_tidx].xll);
1996 sprintf(obuf,"<text x=\"%f\" y=\"%f\"\n",newx, newy );
2070 newx = 1.25*(ldir == LDIR_RL ? bri->rects[tsp->rt_tidx].xur : bri->rects[tsp->rt_tidx].xll);
2079 sprintf(obuf,"x=\"%f\" y=\"%f\"\n",newx,newy);
H A Demf-inout.cpp200 double newx = x * d->dc[d->level].worldTransform.eM11/scale + y * d->dc[d->level].worldTransform.eM21/scale; local
202 cxform << x - newx; cxform << ",";

Completed in 335 milliseconds