Searched refs:dxy (Results 1 - 2 of 2) sorted by relevance

/inkscape/src/
H A Dseltrans.cpp1354 Geom::Point dxy = xy - _point; local
1361 if (fabs(dxy[Geom::X]) > fabs(dxy[Geom::Y])) {
1362 dxy[Geom::Y] = 0;
1364 dxy[Geom::X] = 0;
1370 dxy = m.multipleOfGridPitch(dxy, _point);
1389 Geom::Dim2 dim = fabs(dxy[Geom::X]) > fabs(dxy[Geom::Y]) ? Geom::X : Geom::Y;
1395 bb = new Inkscape::PureTranslateConstrained(dxy[di
[all...]
/inkscape/src/2geom/
H A Dconvex-hull.cpp340 // but due to round errors a == b doesn't mean dxy == dyx
345 double dxy = da[X] * db[Y];
347 if (dxy > dyx) return true;
348 else if (dxy < dyx) return false;

Completed in 4705 milliseconds