Searched refs:e2 (Results 1 - 9 of 9) sorted by relevance

/inkscape/src/2geom/
H A Delliptical-arc-from-sbasis.cpp90 double e1x, double e1y, double e2 );
213 double e1x, double e1y, double e2 )
216 dist_bound = std::fabs( e1x * p[k][X] + e1y * p[k][Y] + e2 );
238 double e2 = ((D + E) + (A + B + C) * tol_at_extr) * tol_at_extr; local
239 if (bound_exceeded(0, ee, e1x, e1y, e2))
244 if (bound_exceeded(0, ee, e1x, e1y, e2))
254 // e2 = ee(tolerance, tolerance) - F;
255 e2 = ((D + E) + (A + B + C) * tolerance) * tolerance;
258 // std::cerr << "e2 = " << e2 << st
[all...]
H A Dtoposweep.cpp271 bool operator()(TopoGraph::Edge const &e1, TopoGraph::Edge const &e2) const { return s(*e1.section, *e2.section); }
566 TopoGraph::Edge &e1 = g[i][0], &e2 = g[i][1];
567 if(e1.section == e2.section) {
570 e1.section->f, e2.section->t,
571 e1.section->fp, e2.section->tp);
575 Vertex *v1 = e1.other, *v2 = e2.other;
577 v2->lookup_section(e2.section) = Edge(new_section, v1);
/inkscape/src/libavoid/
H A Dgeometry.cpp116 // Returns true if the segment e1-e2 intersects the shape boundary
119 bool segmentShapeIntersect(const Point& e1, const Point& e2, const Point& s1, argument
122 if (segmentIntersect(e1, e2, s1, s2))
128 (vecDir(s1, s2, e2) != 0))
130 (((s2 == e2) || pointOnLine(s1, s2, e2)) &&
H A Dgeometry.h51 extern bool segmentShapeIntersect(const Point& e1, const Point& e2,
H A Dvisibility.cpp459 Point &e2 = (*closestIt).vInf2->point; local
466 e2.x + canx, e2.y + cany, 0, 0, 225, 255);
H A Drouter.cpp864 Point e2 = points.second; local
871 inPoly(poly, e2, countBorder) : false;
885 if (segmentShapeIntersect(e1, e2, pi, pn,
1091 double e1, e2; local
1230 e2 = euclideanDist(xp, end);
1231 estdist = e1 + e2;
1239 // e1, e2);
/inkscape/share/extensions/
H A Dvoronoi.py506 e2 = other.edge
507 if (e1 is None) or (e2 is None):
511 if e1.reg[1] is e2.reg[1]:
514 d = e1.a * e2.b - e1.b * e2.a
518 xint = (e1.c*e2.b - e2.c*e1.b) / d
519 yint = (e2.c*e1.a - e1.c*e2.a) / d
520 if(cmp(e1.reg[1],e2
[all...]
/inkscape/src/svg/
H A Dsvg-affine-test.h193 {"translate(-1e3 .123e2)",Geom::Affine(1,0,0,1,-1e3,.123e2)}};
/inkscape/src/ui/dialog/
H A Dfilter-effects-dialog.cpp2462 double e2 = ( e->x - vis_x2/2); local
2464 if(e2 < vis_x)
2465 _autoscroll_x = -(int)(speed + (vis_x - e2) / 5);
2466 else if(e2 < vis_x + limit)
2468 else if(e2 > right_edge)
2469 _autoscroll_x = (int)(speed + (e2 - right_edge) / 5);
2470 else if(e2 > right_edge - limit)

Completed in 33 milliseconds