H A D | snapper.h | 69 class SnapConstraint class in class:Inkscape::Snapper 76 SnapConstraint(Geom::Point const &d) : _point(), _direction(d), _radius(0), _type(DIRECTION) {} function in class:Inkscape::Snapper::SnapConstraint 78 SnapConstraint(Geom::Point const &p, Geom::Point const &d) : _point(p), _direction(d), _radius(0), _type(LINE) {} function in class:Inkscape::Snapper::SnapConstraint 80 SnapConstraint(Geom::Point const &p, Geom::Dim2 const &d) : _point(p), _direction(), _radius(0), _type(LINE) {_direction[d] = 1.;} function in class:Inkscape::Snapper::SnapConstraint 81 SnapConstraint(Geom::Line const &l) : _point(l.origin()), _direction(l.versor()), _radius(0), _type(LINE) {} function in class:Inkscape::Snapper::SnapConstraint 83 SnapConstraint(Geom::Point const &p, Geom::Point const &d, Geom::Coord const &r) : _point(p), _direction(d), _radius(r), _type(CIRCLE) {} function in class:Inkscape::Snapper::SnapConstraint 85 SnapConstraint() : _point(), _direction(), _radius(0), _type(UNDEFINED) {} function in class:Inkscape::Snapper::SnapConstraint 140 SnapConstraint const &/*c*/,
|