/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);
60 ConverterSPCurve::curveto(double x1, double y1, double x2, double y2, double x3, double y3, bool close_last)
argument 63 _curve.curveto(x1, y1, x2, y2, 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));
112 ConverterPath::curveto(double x1, double y1, double x2, double y2, double x3, double y3, bool close_last)
argument 115 _path.appendNew<Geom::CubicBezier>(Geom::Point(x1, y1), Geom::Point(x2, y2), Geom::Point(x3, y3));
[all...] |
H A D | lpe-ellipse_5pts.cpp | 169 double x0, y0, x1, y1, x2, y2, x3, y3; local 187 y3 = sin(e); 189 y2 = y3 + len * sin(e - M_PI_2); 190 p.appendNew<Geom::CubicBezier>(Geom::Point(x1,y1), Geom::Point(x2,y2), Geom::Point(x3,y3));
|
H A D | lpe-envelope.cpp | 122 Piecewise<SBasis> y3 = y ; local 123 y3 -= boundingbox_Y.extent(); 173 + y*(compose((uskeleton3),x3) + y3*compose(n3,x3) );
|
/inkscape/src/helper/ |
H A D | geom.cpp | 631 const double x3, const double y3, 658 double y23 = (y2 + y3) / 2; 660 double y34 = (y3 + y4) / 2; 675 double d3 = fabs(((x3 - x4) * dy - (y3 - y4) * dx)); 688 d3 = calc_sq_distance(x4, y4, x3, y3); 697 da2 = y3 - y1; 709 if(d3 <= 0) d3 = calc_sq_distance(x3, y3, x1, y1); 710 else if(d3 >= 1) d3 = calc_sq_distance(x3, y3, x4, y4); 711 else d3 = calc_sq_distance(x3, y3, x1 + d3*dx, y1 + d3*dy); 725 m_points.push_back(Geom::Point(x3, y3)); 629 recursive_bezier4(const double x1, const double y1, const double x2, const double y2, const double x3, const double y3, const double x4, const double y4, std::vector<Geom::Point> &m_points, int level) argument [all...] |
/inkscape/src/extension/internal/ |
H A D | wmf-print.cpp | 1008 int32_t const y3 = (int32_t) round(p3[Y]); local 1015 lpPoints[i + 2].y = y3;
|
H A D | emf-print.cpp | 1593 int32_t const y3 = (int32_t) round(p3[Y]); local 1600 lpPoints[i + 2].y = y3; 1882 int32_t const y3 = (int32_t) round(p3[Y]); local 1890 pt[2].y = y3;
|
/inkscape/src/livarot/ |
H A D | PathCutting.cpp | 324 gdouble y3=nData->p[1]; local 325 currentpath->appendNew<Geom::CubicBezier>( Geom::Point(x1,y1) , Geom::Point(x2,y2) , Geom::Point(x3,y3) ); 343 gdouble y3=nData->p[1]; local 344 currentpath->appendNew<Geom::CubicBezier>( Geom::Point(x1,y1) , Geom::Point(x2,y2) , Geom::Point(x3,y3) ); 373 gdouble y3=p_e[1]; local 374 currentpath->appendNew<Geom::CubicBezier>( Geom::Point(x1,y1) , Geom::Point(x2,y2) , Geom::Point(x3,y3) );
|
/inkscape/src/ui/widget/ |
H A D | gimpcolorwheel.c | 1019 gint x3, y3, r3, g3, b3; /* Third vertex */ local 1057 y3 = vy; 1060 if (y2 > y3) 1063 SWAP (y2, y3, t); 1069 if (y1 > y3) 1072 SWAP (y1, y3, t); 1096 if (yy >= y1 - PAD && yy < y3 + PAD) 1098 y_interp = CLAMP (yy, y1, y3); 1110 xl = LERP (x2, x3, y2, y3, y_interp); 1112 rl = LERP (r2, r3, y2, y3, y_inter [all...] |
/inkscape/src/extension/internal/pdfinput/ |
H A D | pdf-parser.cpp | 1327 double y3 = args[5].getNum(); local 1328 state->curveTo(x1, y1, x2, y2, x3, y3); 1343 double y3 = args[3].getNum(); local 1344 state->curveTo(x1, y1, x2, y2, x3, y3); 1359 double y3 = y2; local 1360 state->curveTo(x1, y1, x2, y2, x3, y3);
|