Lines Matching defs:temp
567 Geom::Point temp = bisector.versor();
568 Geom::Point limit_point = point_on_path + miter_limit * temp;
665 Geom::Path const& temp = jd.outgoing;
666 Geom::Crossings cross = Geom::crossings(res, temp);
689 Geom::Path d2 = temp.portion(cross[solution].tb, temp.size());
697 res.appendNew<Geom::LineSegment>(temp.initialPoint());
698 res.append(temp);
961 Geom::Path temp;
965 temp.setStitching(true);
973 temp.clear();
975 offset_curve(temp, &input[u], width);
979 res.append(temp);
982 outline_join(res, temp, tang[0], tang[1], width, miter, join);
987 temp.clear();
988 offset_curve(temp, &input[u+1], width);
990 outline_join(res, temp, tang[0], tang[1], width, miter, join);
997 temp.clear();
998 temp.append(c1);
1002 outline_join(temp, temp2, tang[0], tang[1], width, miter, join);
1006 res.append(temp);
1013 void outline_join(Geom::Path &res, Geom::Path const& temp, Geom::Point in_tang, Geom::Point out_tang, double width, double miter, Inkscape::LineJoinType join)
1015 if (res.size() == 0 || temp.size() == 0)
1018 Geom::Curve const& outgoing = temp.front();
1021 res.setFinal(temp.initialPoint());
1022 res.append(temp);
1026 join_data jd(res, temp, in_tang, out_tang, miter, width);