Searched refs:xm (Results 1 - 3 of 3) sorted by relevance
/inkscape/src/live_effects/ |
H A D | spiro-converters.cpp | 47 ConverterSPCurve::quadto(double xm, double ym, double x3, double y3, bool close_last)
argument 49 if ( IS_FINITE(xm) && IS_FINITE(ym) && IS_FINITE(x3) && IS_FINITE(y3) ) {
50 _curve.quadto(xm, ym, x3, y3);
101 ConverterPath::quadto(double xm, double ym, double x3, double y3, bool close_last)
argument 103 if ( IS_FINITE(xm) && IS_FINITE(ym) && IS_FINITE(x3) && IS_FINITE(y3) ) {
104 _path.appendNew<Geom::QuadraticBezier>(Geom::Point(xm, ym), Geom::Point(x3, y3));
|
/inkscape/share/extensions/ |
H A D | dxf_input.py | 133 # mandatory group codes : (10, 11, 20, 21, 40, 41, 42) (xc, xm, yc, ym, width ratio, angle1, angle2) 305 def generate_ellipse(xc, yc, xm, ym, w, a1, a2): 306 rm = math.sqrt(xm*xm + ym*ym) 307 a = math.atan2(ym, xm) 323 path = 'M %f,%f A %f,%f %f 1 0 %f,%f %f,%f %f 1 0 %f,%f z' % (xc+xm, yc-ym, rm, w*rm, -180.0*a/math.pi, xc-xm, yc+ym, rm, w*rm, -180.0*a/math.pi, xc+xm, yc-ym)
|
/inkscape/src/trace/ |
H A D | quantize.cpp | 446 int xm = x1 + dx/2, ym = y1 + dy/2; local 453 octreeBuildArea(pool, rgbmap, &ref1, x1, y1, xm, y2, ncolor); 454 octreeBuildArea(pool, rgbmap, &ref2, xm, y1, x2, y2, ncolor);
|
Completed in 42 milliseconds