Searched defs:ry2 (Results 1 - 2 of 2) sorted by relevance
/inkscape/src/2geom/ |
H A D | ellipse.cpp | 89 double ry2 = num / den; local 90 if (ry2 < 0) { 91 THROW_RANGEERROR("ry2 < 0, while computing 'rx' coefficient"); 93 _rays[Y] = std::sqrt(ry2);
|
/inkscape/src/extension/internal/ |
H A D | metafile-print.cpp | 397 /* 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 23 milliseconds