Searched defs:nearestTime (Results 1 - 12 of 12) sorted by relevance

/inkscape/src/2geom/
H A Dcircle.cpp125 Coord Circle::nearestTime(Point const &p) const { function in class:Geom::Circle
H A Dcurve.cpp47 Coord Curve::nearestTime(Point const& p, Coord a, Coord b) const function in class:Geom::Curve
H A Dcurve.h248 virtual Coord nearestTime( Point const& p, Coord a = 0, Coord b = 1 ) const;
251 Coord nearestTime(Point const &p, Interval const &i) const { function in class:Geom::Curve
252 return nearestTime(p, i.min(), i.max());
346 return c.nearestTime(p);
H A Dsbasis-curve.h110 virtual Coord nearestTime( Point const& p, Coord from = 0, Coord to = 1 ) const { function in class:Geom::SBasisCurve
H A Dbezier-curve.cpp220 Coord BezierCurve::nearestTime(Point const &p, Coord from, Coord to) const function in class:Geom::BezierCurve
281 Coord BezierCurveN<1>::nearestTime(Point const& p, Coord from, Coord to) const function in class:Geom::BezierCurveN
H A Delliptical-arc.h280 virtual double nearestTime( Point const& p, double from = 0, double to = 1 ) const { function in class:Geom::EllipticalArc
H A Dinterval.h111 Coord nearestTime(Coord v) { function in class:Geom::Interval
H A Dpathvector.cpp240 boost::optional<PathVectorTime> PathVector::nearestTime(Point const &p, Coord *dist) const function in class:Geom::PathVector
247 PathTime pos = (*this)[i].nearestTime(p, &d);
267 PathTime pos = (*this)[i].nearestTime(p, &d);
H A Dray.h102 Coord nearestTime(Point const& point) const { function in class:Geom::Ray
127 double t = _ray.nearestTime(_point);
H A Dbezier-curve.h160 virtual Coord nearestTime(Point const &p, Coord from = 0, Coord to = 1) const;
275 virtual Coord nearestTime(Point const &p, Coord from = 0, Coord to = 1) const { function in class:Geom::BezierCurveN
276 return BezierCurve::nearestTime(p, from, to);
320 template <> Coord BezierCurveN<1>::nearestTime(Point const &, Coord, Coord) const;
H A Dconicsec.h478 Point nearestTime (const Point &P) const function in class:Geom::xAx
486 THROW_LOGICALERROR ("nearestTime: no nearest point found");
H A Dline.h251 Coord nearestTime(Point const &p) const { function in class:Geom::Line
382 if (distance(pointAt(nearestTime(other._initial)), other._initial) != 0) return false;
383 if (distance(pointAt(nearestTime(other._final)), other._final) != 0) return false;
413 Coord t = line.nearestTime(p);
466 double t = seg.nearestTime(p);
514 return line.pointAt(line.nearestTime(p));
520 return line.segment(line.nearestTime(seg.initialPoint()),
521 line.nearestTime(seg.finalPoint()));

Completed in 63 milliseconds