Lines Matching refs:isr

131     IntermSnapResults isr;
135 (*i)->freeSnap(isr, p, bbox_to_snap, &_items_to_ignore, _unselected_nodes);
138 return findBestSnap(p, isr, false, false, to_paths_only);
184 IntermSnapResults isr;
186 snapper->freeSnap(isr, Inkscape::SnapCandidatePoint(t_offset, Inkscape::SNAPSOURCE_GRID_PITCH),Geom::OptRect(), NULL, NULL);
190 Inkscape::SnappedPoint s = findBestSnap(Inkscape::SnapCandidatePoint(t_offset, Inkscape::SNAPSOURCE_GRID_PITCH), isr, false, true);
257 IntermSnapResults isr;
260 (*i)->constrainedSnap(isr, p, bbox_to_snap, constraint, &_items_to_ignore, _unselected_nodes);
263 result = findBestSnap(p, isr, true);
327 IntermSnapResults isr;
344 (*i)->constrainedSnap(isr, p, bbox_to_snap, cc, &_items_to_ignore,_unselected_nodes);
346 result = findBestSnap(p, isr, true);
407 IntermSnapResults isr;
410 (*i)->freeSnap(isr, candidate, Geom::OptRect(), NULL, NULL);
413 Inkscape::SnappedPoint const s = findBestSnap(candidate, isr, false);
433 IntermSnapResults isr;
438 (*i)->constrainedSnap(isr, candidate, Geom::OptRect(), cl, NULL, NULL);
441 Inkscape::SnappedPoint const s = findBestSnap(candidate, isr, false);
486 IntermSnapResults const &isr,
495 std::cout << " Points : " << isr.points.size() << std::endl;
496 std::cout << " Grid lines : " << isr.grid_lines.size()<< std::endl;
497 std::cout << " Guide lines : " << isr.guide_lines.size()<< std::endl;
498 std::cout << " Curves : " << isr.curves.size()<< std::endl;
504 for (std::list<Inkscape::SnappedPoint>::const_iterator i = isr.points.begin(); i != isr.points.end(); i++) {
507 for (std::list<Inkscape::SnappedCurve>::const_iterator i = isr.curves.begin(); i != isr.curves.end(); i++) {
510 for (std::list<Inkscape::SnappedLine>::const_iterator i = isr.grid_lines.begin(); i != isr.grid_lines.end(); i++) {
513 for (std::list<Inkscape::SnappedLine>::const_iterator i = isr.guide_lines.begin(); i != isr.guide_lines.end(); i++) {
523 if (getClosestSP(isr.points, closestPoint)) {
532 if (getClosestCurve(isr.curves, closestCurve, exclude_paths)) {
538 if (getClosestSL(isr.grid_lines, closestGridLine)) {
544 if (getClosestSL(isr.guide_lines, closestGuideLine)) {
558 if (getClosestIntersectionCS(isr.curves, p.getPoint(), closestCurvesIntersection, _desktop->dt2doc())) {
567 if (getClosestIntersectionCL(isr.curves, isr.guide_lines, p.getPoint(), closestCurveGuideIntersection, _desktop->dt2doc())) {
575 if (getClosestIntersectionSL(isr.grid_lines, closestGridPoint)) {
583 if (getClosestIntersectionSL(isr.guide_lines, closestGuidePoint)) {
592 if (getClosestIntersectionSL(isr.grid_lines, isr.guide_lines, closestGridGuidePoint)) {