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

/inkscape/src/display/
H A Dsp-ctrlline.cpp147 #define EPSILON 1e-6 macro
148 #define DIFFER(a,b) (fabs ((a) - (b)) > EPSILON)
H A Dsp-ctrlcurve.cpp153 #define EPSILON 1e-6 macro
154 #define DIFFER(a,b) (fabs ((a) - (b)) > EPSILON)
H A Dcanvas-text.cpp257 #define EPSILON 1e-6 macro
258 #define DIFFER(a,b) (fabs ((a) - (b)) > EPSILON)
/inkscape/src/2geom/
H A Dcoord.h84 const Coord EPSILON = 1e-6; //1e-18; member in namespace:Geom
92 inline bool are_near(Coord a, Coord b, double eps=EPSILON) { return a-b <= eps && a-b >= -eps; }
93 inline bool rel_error_bound(Coord a, Coord b, double eps=EPSILON) { return a <= eps*b && a >= -eps*b; }
H A Dray.h132 bool are_near(Point const& _point, Ray const& _ray, double eps = EPSILON) { argument
137 bool are_same(Ray const& r1, Ray const& r2, double eps = EPSILON) { argument
H A Dpoint.h216 bool isNormalized(Coord eps=EPSILON) const {
388 inline bool are_near(Point const &a, Point const &b, double eps = EPSILON) { argument
397 double eps = EPSILON)
406 bool is_unit_vector(Point const &p, Coord eps = EPSILON);
396 are_collinear(Point const& p1, Point const& p2, Point const& p3, double eps = EPSILON) argument
H A Dline.h419 bool are_near(Point const &p, Line const &line, double eps = EPSILON) argument
425 bool are_parallel(Line const &l1, Line const &l2, double eps = EPSILON) argument
438 bool are_same(Line const &l1, Line const &l2, double eps = EPSILON) argument
446 bool are_orthogonal(Line const &l1, Line const &l2, double eps = EPSILON) argument
471 bool are_near(Point const &p, LineSegment const &seg, double eps = EPSILON) argument
/inkscape/src/extension/internal/pdfinput/
H A Dsvg-builder.cpp820 #define EPSILON 0.0001 macro
1211 if ( fabs( max_scale - 1.0 ) > EPSILON ) {

Completed in 75 milliseconds