Searched defs:_point (Results 1 - 9 of 9) sorted by relevance

/inkscape/src/display/
H A Dsodipodi-ctrl.h55 Geom::Point _point; member in struct:SPCtrl
/inkscape/src/2geom/
H A Dintersection.h57 , _point(lerp(0.5, sa.pointAt(ta), sb.pointAt(tb)))
64 , _point(p)
69 return _point;
73 return _point;
80 swap(a._point, b._point);
103 Point _point; member in class:Geom::Intersection
H A Dray.h126 double distance(Point const& _point, Ray const& _ray) { argument
127 double t = _ray.nearestTime(_point);
128 return ::Geom::distance(_point, _ray.pointAt(t));
132 bool are_near(Point const& _point, Ray const& _ray, double eps = EPSILON) { argument
133 return are_near(distance(_point, _ray), 0, eps);
H A Dconicsec.h388 * _point: the conic section point the tangent line pass through
390 Line tangent (const Point & _point) const
393 pp[0] = _point[0]; pp[1] = _point[1]; pp[2] = 1;
435 * _point: the point at which computes the angle
439 double angle_at (const Point & _point) const
441 double angle = atan2 (gradient (_point));
450 * _point: the point to be tested
462 bool arc_contains (const Point & _point, const Point & _initial, argument
466 return ai.contains(angle_at(_point));
[all...]
/inkscape/src/
H A Dsnap-candidate.h34 : _point(point),
44 : _point(point),
54 : _point(point),
63 inline Geom::Point const & getPoint() const {return _point;}
83 Geom::Point _point; member in class:Inkscape::SnapCandidatePoint
H A Dsnapped-point.h61 Geom::Point getPoint() const {return _point;}
62 void setPoint(Geom::Point const &p) {_point = p;}
80 std::cout << "_point = " << _point << std::endl;
97 Geom::Point _point; // Location of the snapped point member in class:Inkscape::SnappedPoint
H A Dsnapper.h65 // - a line (infinite line with origin, running through _point pointing in _direction)
67 // - a circle (_point denotes the center, _radius doesn't need an explanation, _direction contains
76 SnapConstraint(Geom::Point const &d) : _point(), _direction(d), _radius(0), _type(DIRECTION) {}
78 SnapConstraint(Geom::Point const &p, Geom::Point const &d) : _point(p), _direction(d), _radius(0), _type(LINE) {}
80 SnapConstraint(Geom::Point const &p, Geom::Dim2 const &d) : _point(p), _direction(), _radius(0), _type(LINE) {_direction[d] = 1.;}
81 SnapConstraint(Geom::Line const &l) : _point(l.origin()), _direction(l.versor()), _radius(0), _type(LINE) {}
83 SnapConstraint(Geom::Point const &p, Geom::Point const &d, Geom::Coord const &r) : _point(p), _direction(d), _radius(r), _type(CIRCLE) {}
85 SnapConstraint() : _point(), _direction(), _radius(0), _type(UNDEFINED) {}
91 return _point;
111 Geom::Point v_orig = p - _point;
131 Geom::Point _point; member in class:Inkscape::Snapper::SnapConstraint
[all...]
H A Dseltrans.h192 Geom::Point _point; ///< original position of the knot being used for the current transform member in class:Inkscape::SelTrans
/inkscape/src/libavoid/
H A Dconnector.h137 Point _point; member in class:Avoid::ConnEnd

Completed in 32 milliseconds