Searched refs:ls (Results 1 - 17 of 17) sorted by relevance

/inkscape/src/2geom/
H A Dgeom.h49 Geom::LineSegment ls);
H A Dgeom.cpp336 Geom::LineSegment ls)
340 results = rect_line_intersect(r.min(), r.max(), ls[0], ls[1]);
335 rect_line_intersect(Geom::Rect &r, Geom::LineSegment ls) argument
H A Dellipse.cpp131 LineSegment ls(a, b);
132 ls.transform(unitCircleTransform());
133 return ls;
140 LineSegment ls(a, b);
141 ls.transform(unitCircleTransform());
142 return ls;
H A Dbezier-curve.cpp160 LineSegment ls(initialPoint(), finalPoint());
161 result = ls.intersect(other);
H A Dconicsec.h355 NL::LinearSystem ls (Q, T);
356 NL::Vector sol = ls.SV_solve();
H A Dline.cpp276 std::vector<ShapeIntersection> Line::intersect(LineSegment const &ls) const
278 Line other(ls);
H A Delliptical-arc.cpp588 LineSegment ls(_initial_point, _final_point);
589 return ls.intersect(other, eps);
595 LineSegment ls(other.initialPoint(), other.finalPoint());
596 result = _ellipse.intersect(ls);
H A Dconicsec.cpp440 Geom::NL::LinearSystem ls(M, V);
442 Geom::NL::Vector x = ls.SV_solve();
499 Geom::LineSegment ls(r.corner(ei), r.corner(ei+1));
500 D2<SBasis> lssb = ls.toSBasis();
518 LineSegment ls = intersection(Line::from_origin_and_vector(A, dA), bnd); local
519 return RatQuad::fromPointsTangents(A, dA, ls.pointAt(0.5), ls[1], dA);
H A Dsbasis.h123 SBasis(std::vector<Linear> const &ls)
124 : d(ls)
H A Dline.h371 std::vector<ShapeIntersection> intersect(LineSegment const &ls) const;
/inkscape/po/
H A Dcheck_for_tutorial_problems.sh55 else PO_FILE_LIST=`ls -1 "$base_dir/po/" | grep "\.po$" | sort`
83 TUTORIAL_FILE_LIST=`ls -1 "$base_dir/share/tutorials/" | grep "^tutorial-[^.]*\...\.svg$" | sort`
102 TUTORIAL_DIRECTORY_FILELIST=`ls -1 "$base_dir/share/tutorials/" | grep -v "^Makefile.am$" | sort`
/inkscape/src/
H A Dgradient-drag.cpp378 Geom::LineSegment ls(begin, end);
379 double offset = ls.nearestTime(mouse_p);
380 Geom::Point nearest = ls.pointAt(offset);
391 Geom::LineSegment ls(begin, end);
392 double offset = ls.nearestTime(mouse_p);
393 Geom::Point nearest = ls.pointAt(offset);
403 ls = Geom::LineSegment(begin, end);
404 offset = ls.nearestTime(mouse_p);
405 nearest = ls.pointAt(offset);
603 Geom::LineSegment ls(lin
[all...]
/inkscape/src/helper/
H A Dgeom.cpp520 Geom::LineSegment ls(cit->initialPoint(), cit->finalPoint());
521 output.back().append(ls);
544 Geom::LineSegment ls(prev_r1, r1);
545 output.back().append(ls);
/inkscape/src/ui/tools/
H A Dgradient-tool.cpp209 Geom::LineSegment ls(line->s, line->e);
210 Geom::Point nearest = ls.pointAt(ls.nearestTime(rc->mousepoint_doc));
/inkscape/src/ui/dialog/
H A Dfilter-effects-dialog.cpp1257 const int ls = _light_source.get_active_row_number(); local
1259 if(!(ls == -1 && !child) &&
1260 !(ls == 0 && SP_IS_FEDISTANTLIGHT(child)) &&
1261 !(ls == 1 && SP_IS_FEPOINTLIGHT(child)) &&
1262 !(ls == 2 && SP_IS_FESPOTLIGHT(child))) {
1267 if(ls != -1) {
1315 LightSourceControl* ls = new LightSourceControl(_dialog); local
1316 add_attr_widget(ls);
1317 add_widget(&ls->get_box(), "");
1318 return ls;
[all...]
/inkscape/src/extension/internal/
H A Demf-print.cpp838 Geom::LineSegment ls(P1_trail, P1);
839 output.append(ls);
/inkscape/share/extensions/
H A Dgcodetools.py2416 ls = biarc_curve_segment_length(seg)
2417 if ls != 0 :
2418 if l-lc>ls :
2424 a = seg[3]/ls*(l-lc)
2427 res += [[ seg[0], "arc", seg[2], a, [x,y], [seg[5][0],seg[5][1]/ls*(l-lc)] ]]
2429 res += [[ seg[0], "line", 0, 0, [(seg[4][0]-seg[0][0])/ls*(l-lc),(seg[4][1]-seg[0][1])/ls*(l-lc)], [seg[5][0],seg[5][1]/ls*(l-lc)] ]]

Completed in 102 milliseconds