Searched refs:intersections (Results 1 - 2 of 2) sorted by relevance

/inkscape/src/ui/tools/
H A Dmeasure-tool.cpp530 static void calculate_intersections(SPDesktop * /*desktop*/, SPItem* item, Geom::PathVector const &lineseg, SPCurve *curve, std::vector<double> &intersections) argument
533 // Find all intersections of the control-line with this shape
548 intersections.push_back((*m).ta);
551 intersections.push_back((*m).ta);
1222 std::vector<Geom::Point> intersections; local
1225 intersections.push_back(lineseg[0].pointAt(*iter_t));
1231 intersections.clear();
1232 intersections.push_back(start);
1233 intersections.push_back(end);
1236 intersections
[all...]
/inkscape/share/extensions/
H A Dgcodetools.py266 # we'll do the raytracing and see how many intersections are there on the ray's way.
267 # if number of intersections is even then point is outside.
532 ### Returns array containig all intersections between two segmets of cubic
584 else : # Both segments have been subdevided enougth. Let's get some intersections :).
595 intersections = bezier_intersection_recursive_result
596 for i in range(len(intersections)) :
597 if len(intersections[i])<5 or intersections[i][4] != "Overlap" :
598 intersections[i] = polish_intersection(a,b,intersections[
[all...]

Completed in 22 milliseconds