Searched refs:xy (Results 1 - 14 of 14) sorted by relevance

/inkscape/share/extensions/
H A Dpixelsnap.py105 b) coz it returns the new xy, rather than modifying the input
378 xy = self.pathxy(path, i)
380 xy = first_xy
387 if not (xy and prev_xy and next_xy):
388 prev_xy = xy
391 xy_untransformed = tuple(xy)
392 xy = list(transform_point(transform, xy))
398 if horizontal(xy, prev_xy):
400 xy[
[all...]
/inkscape/src/live_effects/
H A Dspiro.cpp87 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/
H A Dsp-tspan.cpp463 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 Dsp-star.cpp580 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 Dtext-chemistry.cpp424 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 Dseltrans.h63 void moveTo(Geom::Point const &xy, unsigned int state);
H A Dsp-pattern.cpp619 Geom::Affine full(cm.xx, cm.yx, cm.xy, cm.yy, 0, 0);
H A Dseltrans.cpp1349 void Inkscape::SelTrans::moveTo(Geom::Point const &xy, guint state) argument
1354 Geom::Point dxy = xy - _point;
/inkscape/src/2geom/
H A Dcairo-path-sink.cpp82 cm.xy = uct[2];
H A Dgeneric-rect.h115 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 Dline.h333 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/extension/internal/
H A Dcairo-render-context.h223 void _concatTransform(cairo_t *cr, double xx, double yx, double xy, double yy, double x0, double y0);
H A Dcairo-render-context.cpp946 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];
/inkscape/src/display/
H A Dcairo-utils.cpp93 cm.xy = m[2];
585 cm.xy = xform[2];
767 m[2] = cm.xy;
777 cm.xy = m[2];

Completed in 46 milliseconds