Lines Matching defs:off
151 void Path::DoSimplify(int off, int N, double treshhold)
167 Geom::Point const moveToPt = pts[off].p;
188 if (pts[off + lastP].isMoveTo == polyline_forced) {
194 } while (lastP < N && ExtendFit(off + curP, M, data,
212 AttemptSimplify(off + curP, M, treshhold, res, worstP); // ca passe forcement
217 endToPt = pts[off + lastP].p;
321 bool Path::ExtendFit(int off, int N, fitting_tables &data, double treshhold, PathDescrCubicTo &res, int &worstP)
335 data.Xk[i] = pts[off + i].p[Geom::X];
336 data.Yk[i] = pts[off + i].p[Geom::Y];
337 data.fk[i] = ( pts[off + i].isMoveTo == polyline_forced ) ? 0x01 : 0x00;
737 bool Path::AttemptSimplify(int off, int N, double treshhold, PathDescrCubicTo &res,int &worstP)
758 start = pts[off].p;
759 cp1 = pts[off + 1].p;
760 end = pts[off + N - 1].p;
787 Xk[i] = pts[off + i].p[Geom::X];
788 Yk[i] = pts[off + i].p[Geom::Y];
790 if ( pts[off + i].isMoveTo == polyline_forced ) {