Searched defs:xy (Results 1 - 8 of 8) sorted by relevance
/inkscape/src/ |
H A D | sp-tspan.cpp | 463 Geom::Point xy = bbox->min(); local 464 xy *= tp->document->getDocumentScale().inverse(); // Convert to user-units. 488 if (xy[Geom::X] != 1e18 && xy[Geom::Y] != 1e18) { 489 sp_repr_set_svg_double(text->getRepr(), "x", xy[Geom::X]); 490 sp_repr_set_svg_double(text->getRepr(), "y", xy[Geom::Y]);
|
H A D | text-chemistry.cpp | 424 Geom::Point xy = bbox->min(); local 425 sp_repr_set_svg_double(rtext, "x", xy[Geom::X]); 426 sp_repr_set_svg_double(rtext, "y", xy[Geom::Y]);
|
H A D | sp-star.cpp | 580 Geom::Point xy = star->r[point] * Geom::Point(cos(arg), sin(arg)) + star->center; local 584 return xy; 587 guint32 seed = point_unique_int (xy); 593 return xy + shift;
|
H A D | seltrans.cpp | 1349 void Inkscape::SelTrans::moveTo(Geom::Point const &xy, guint state) argument 1354 Geom::Point dxy = xy - _point;
|
/inkscape/src/2geom/ |
H A D | generic-rect.h | 115 CPoint xy(x, y); 117 CRect result(xy, xy + wh); 121 static CRect from_xywh(CPoint const &xy, CPoint const &wh) { argument 122 CRect result(xy, xy + wh);
|
H A D | line.h | 333 Coord x2 = v[X]*v[X], y2 = v[Y]*v[Y], xy = v[X]*v[Y]; local 334 Affine m(x2-y2, 2.*xy, 335 2.*xy, y2-x2,
|
/inkscape/src/live_effects/ |
H A D | spiro.cpp | 87 integrate_spiro(const double ks[4], double xy[2]) argument 442 xy[0] = x * (1./24 * ds); 443 xy[1] = y * (1./24 * ds); 445 xy[0] = x * ds; 446 xy[1] = y * ds; 453 double xy[2]; local 461 integrate_spiro(ks, xy); 462 ch = hypot(xy[0], xy[1]); 463 th = atan2(xy[ [all...] |
/inkscape/src/extension/internal/ |
H A D | cairo-render-context.cpp | 946 ret[2] = ctm.xy; 1808 CairoRenderContext::_concatTransform(cairo_t *cr, double xx, double yx, double xy, double yy, double x0, double y0) argument 1812 cairo_matrix_init(&matrix, xx, yx, xy, yy, x0, y0); 1821 matrix->xy = transform[2];
|
Completed in 1098 milliseconds