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

/inkscape/src/2geom/
H A Dcrossing.h47 //Crossing between one or two paths
48 struct Crossing { struct in namespace:Geom
52 Crossing() : dir(false), ta(0), tb(1), a(0), b(1) {} function in struct:Geom::Crossing
53 Crossing(double t_a, double t_b, bool direction) : dir(direction), ta(t_a), tb(t_b), a(0), b(1) {} function in struct:Geom::Crossing
54 Crossing(double t_a, double t_b, unsigned ai, unsigned bi, bool direction) : dir(direction), ta(t_a), tb(t_b), a(ai), b(bi) {} function in struct:Geom::Crossing
55 bool operator==(const Crossing & other) const { return a == other.a && b == other.b && dir == other.dir && ta == other.ta && tb == other.tb; }
56 bool operator!=(const Crossing & other) const { return !(*this == other); }
64 typedef boost::optional<Crossing> OptCrossing;
105 /*inline bool are_near(Crossing a, Crossing
[all...]

Completed in 67 milliseconds