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

/inkscape/src/
H A Dline-snapper.cpp136 Geom::OptCrossing inters = Geom::OptCrossing(); // empty by default local
139 inters = Geom::intersection(constraint_line, gridguide_line);
147 if (inters) {
148 Geom::Point t = constraint_line.pointAt((*inters).ta);
H A Dsnapped-line.cpp54 Geom::OptCrossing inters = Geom::OptCrossing(); // empty by default local
57 inters = Geom::intersection(getLineSegment(), line.getLineSegment());
62 inters = Geom::OptCrossing();
65 if (inters) {
66 Geom::Point inters_pt = getLineSegment().pointAt((*inters).ta);
136 Geom::OptCrossing inters = Geom::OptCrossing(); // empty by default local
139 inters = Geom::intersection(getLine(), line.getLine());
144 inters = Geom::OptCrossing();
147 if (inters) {
148 Geom::Point inters_pt = getLine().pointAt((*inters)
[all...]
H A Dobject-snapper.cpp647 std::vector<Geom::PVIntersection> inters = constraint_path.intersect(*(k->path_vector)); local
650 for (std::vector<Geom::PVIntersection>::const_iterator i = inters.begin(); i != inters.end(); ++i) {
H A Dbox3d.cpp611 Geom::OptCrossing inters = Geom::OptCrossing(); // empty by default local
614 inters = Geom::intersection(lineAB, lineCD);
622 if (!inters) {
626 Geom::Point E = lineAB.pointAt((*inters).ta); // the point of intersection
/inkscape/src/display/
H A Dcanvas-axonomgrid.cpp738 Geom::OptCrossing inters = Geom::OptCrossing(); // empty by default local
741 inters = Geom::intersection(line_x, line_z);
753 if (inters) {
754 Geom::Point inters_pt = line_x.pointAt((*inters).ta);

Completed in 2592 milliseconds