/inkscape/src/livarot/ |
H A D | PathStroke.cpp | 42 ButtType butt, double miter, bool justAdd) 73 DoStroke(lastM, lastP - lastM, dest, true, width, join, butt, miter, true); 75 DoStroke(lastM, lastP - lastM, dest, doClose, width, join, butt, miter, true); 77 } else if (butt == butt_round) { // special case: zero length round butt is a circle 83 DoButt(dest, width, butt, pos, dir, last[RIGHT], last[LEFT]); 86 DoButt(dest, width, butt, pos, dir, end[LEFT], end[RIGHT]); 95 ButtType butt, double miter, bool /*justAdd*/) 144 if (butt == butt_round) { // special case: zero length round butt i 41 Stroke(Shape *dest, bool doClose, double width, JoinType join, ButtType butt, double miter, bool justAdd) argument 94 DoStroke(int off, int N, Shape *dest, bool doClose, double width, JoinType join, ButtType butt, double miter, bool ) argument 242 DoButt(Shape *dest, double width, ButtType butt, Geom::Point pos, Geom::Point dir, int &leftNo, int &rightNo) argument [all...] |
H A D | Path.h | 141 // - stroke the path; usual parameters: type of cap=butt, type of join=join and miter (see LivarotDefs.h) 144 ButtType butt, double miter, bool justAdd = false); 149 void Outline(Path *dest, double width, JoinType join, ButtType butt, 153 void OutsideOutline(Path *dest, double width, JoinType join, ButtType butt, 157 void InsideOutline (Path * dest, double width, JoinType join, ButtType butt, 322 ButtType butt, double miter, bool closeIfNeeded, 325 ButtType butt, double miter, bool justAdd = false); 354 static void DoButt (Shape * dest, double width, ButtType butt, Geom::Point pos,
|
H A D | PathOutline.cpp | 24 void Path::Outline(Path *dest, double width, JoinType join, ButtType butt, double miter) argument 151 join, butt, miter, true, false, endPos, endButt); 154 width, join, butt, miter, true, false, endPos, endButt); 158 join, butt, miter, false, false, endPos, endButt); 160 if (butt == butt_round) { 162 } else if (butt == butt_square) { 166 } else if (butt == butt_pointy) { 173 dest, calls, 0.0025 * width * width, width, join, butt, 177 if (butt == butt_round) { 179 } else if (butt 201 OutsideOutline(Path * dest, double width, JoinType join, ButtType butt, double miter) argument 226 InsideOutline(Path * dest, double width, JoinType join, ButtType butt, double miter) argument [all...] |
/inkscape/src/helper/ |
H A D | geom-pathstroke.cpp | 909 Geom::PathVector outline(Geom::Path const& input, double width, double miter, LineJoinType join, LineCapType butt) argument 921 switch (butt) {
|