Searched defs:rx2 (Results 1 - 2 of 2) sorted by relevance

/inkscape/src/2geom/
H A Dellipse.cpp79 double rx2 = num / den; local
80 if (rx2 < 0) {
81 THROW_RANGEERROR("rx2 < 0, while computing 'rx' coefficient");
83 _rays[X] = std::sqrt(rx2);
/inkscape/src/extension/internal/
H A Dmetafile-print.cpp397 /* rx2,ry2 must be larger than rx1,ry1!
400 Geom::PathVector PrintMetafile::center_elliptical_ring_as_SVG_PathV(Geom::Point ctr, double rx1, double ry1, double rx2, double ry2, double F) argument
413 x21 = ctr[X] + cos(F) * rx2 * cos(0) + sin(-F) * ry2 * sin(0);
414 y21 = ctr[Y] + sin(F) * rx2 * cos(0) + cos(F) * ry2 * sin(0);
415 x22 = ctr[X] + cos(F) * rx2 * cos(M_PI) + sin(-F) * ry2 * sin(M_PI);
416 y22 = ctr[Y] + sin(F) * rx2 * cos(M_PI) + cos(F) * ry2 * sin(M_PI);
421 x21, y21, rx2, ry2, degrot, x22, y22, rx2, ry2, degrot, x21, y21);

Completed in 49 milliseconds