Searched defs:pp (Results 1 - 14 of 14) sorted by relevance

/inkscape/src/
H A Dline-snapper.cpp103 Geom::Point pp = c.projection(p.getPoint()); local
106 const LineList lines = _getSnapLines(pp);
109 Geom::Point const point_on_line = c.hasPoint() ? c.getPoint() : pp;
121 _addSnappedPoint(isr, p_proj, Geom::L2(pp - p_proj), p.getSourceType(), p.getSourceNum(), true);
H A Ddir-util.cpp66 const char *pp, *bp; local
111 for (pp = path; *pp && *pp == '.';)
113 if (!strncmp (pp, parent, 3))
115 pp += 3;
119 else if (!strncmp (pp, current, 2))
121 pp += 2;
123 else if (!strncmp (pp, "..\0", 3))
125 pp
152 const char *pp, *bp, *branch; local
[all...]
H A Did-clash.cpp257 id_changelist_type::const_iterator pp; local
259 for (pp = id_changes.begin(); pp != pp_end; ++pp) {
260 SPObject *obj = pp->first;
261 refmap_type::const_iterator pos = refmap.find(pp->second);
H A Dsnap.cpp227 Geom::Point pp = constraint.projection(p.getPoint()); local
229 Inkscape::SnappedPoint no_snap = Inkscape::SnappedPoint(pp, p.getSourceType(), p.getSourceNum(), Inkscape::SNAPTARGET_CONSTRAINT, Geom::infinity(), 0, false, true, false);
305 Geom::Point pp = (*c).projection(p.getPoint()); local
306 projections.push_back(pp);
314 std::vector<Geom::Point>::iterator pp = projections.begin(); local
315 for (; pp != projections.end(); ++pp) {
316 if (Geom::L2(*pp - p.getPoint()) < Geom::L2(no_snap.getPoint() - p.getPoint())) {
317 no_snap.setPoint(*pp); // Remember the projection onto the closest constraint
H A Dobject-snapper.cpp719 Geom::Point pp = c.projection(p.getPoint()); local
723 Geom::Rect const local_bbox_to_snap = bbox_to_snap ? *bbox_to_snap : Geom::Rect(pp, pp);
731 _snapNodes(isr, p, unselected_nodes, c, pp);
734 _snapPathsConstrained(isr, p, c, pp);
H A Dselection-chemistry.cpp1140 SPObject *pp, *pc; local
1142 pp = document->getObjectByRepr(repr->parent());
1144 g_assert(dynamic_cast<SPGroup *>(pp));
1145 pc = pp->firstChild();
/inkscape/src/livarot/
H A Dpath-description.h51 PathDescrMoveTo(Geom::Point const &pp) argument
52 : PathDescr(descr_moveto), p(pp) {}
64 PathDescrLineTo(Geom::Point const &pp) argument
65 : PathDescr(descr_lineto), p(pp) {}
78 PathDescrBezierTo(Geom::Point const &pp, int n) argument
79 : PathDescr(descr_bezierto), p(pp), nb(n) {}
94 PathDescrIntermBezierTo(Geom::Point const &pp) argument
95 : PathDescr(descr_interm_bezier), p(pp) {}
107 PathDescrCubicTo(Geom::Point const &pp, Geom::Point const &s, Geom::Point const& e) argument
108 : PathDescr(descr_cubicto), p(pp), star
123 PathDescrArcTo(Geom::Point const &pp, double x, double y, double a, bool l, bool c) argument
[all...]
H A DPath.h83 path_lineto(bool m, Geom::Point pp) : isMoveTo(m), p(pp), piece(-1), t(0), closed(false) {} argument
84 path_lineto(bool m, Geom::Point pp, int pie, double tt) : isMoveTo(m), p(pp), piece(pie), t(tt), closed(false) {} argument
/inkscape/src/2geom/
H A Dpolynomial.cpp79 std::vector<std::complex<double> > solve(Poly const & pp) { argument
80 Poly p(pp);
/inkscape/src/libavoid/
H A Dvisibility.cpp316 Point pp; local
318 centerPoint, p.vInf->point, &(pp.x), &(pp.y));
327 angleDist = euclideanDist(pp, centerPoint);
356 bool operator () (const PointPair& pp) argument
358 if (pp.vInf->id.isShape &&
359 (ss.find(pp.vInf->id.objID) != ss.end()))
/inkscape/src/ui/
H A Dclipboard.cpp276 * @param pp The path parameter to store in the clipboard.
278 void ClipboardManagerImpl::copyPathParameter(Inkscape::LivePathEffect::PathParam *pp) argument
280 if ( pp == NULL ) {
283 gchar *svgd = sp_svg_write_path( pp->get_pathvector() );
/inkscape/src/ui/tools/
H A Dfreehand-base.cpp962 Geom::Point pp = pt * i2d.inverse(); local
976 sp_repr_set_svg_double (repr, "sodipodi:cx", pp[Geom::X]);
977 sp_repr_set_svg_double (repr, "sodipodi:cy", pp[Geom::Y]);
/inkscape/src/extension/internal/
H A Dodf.cpp572 int pp = p-1; local
764 for (int i = 0; i <= pp; i++) {
772 while (k < pp) {
/inkscape/src/libuemf/
H A Duwmf_endian.c182 \param pp PU_POLYPOLY object
185 char *pp,
191 if(torev){ nPolys = *(uint16_t *)(pp + offsetof(U_POLYPOLYGON, nPolys)); }
192 U_swap2(pp + offsetof(U_POLYPOLYGON, nPolys),1);
193 if(!torev){ nPolys = *(uint16_t *)(pp + offsetof(U_POLYPOLYGON, nPolys)); }
194 aPolyCounts = (uint16_t *)(pp + offsetof(U_POLYPOLYGON, aPolyCounts));
207 \param pp U_SCAN object
184 polypolygon_swap( char *pp, int torev ) argument

Completed in 893 milliseconds