Lines Matching refs:treshhold
21 void Path::ConvertWithBackData(double treshhold)
95 RecCubicTo(curX, nData->start, nextX, nData->end, treshhold, 8, 0.0, 1.0, curP);
105 DoArc(curX, nextX, nData->rx, nData->ry, nData->angle, nData->large, nData->clockwise, treshhold, curP);
145 RecBezierTo(cx, stx, mx, treshhold, 8, 0.0, 1.0, curP + k);
165 RecBezierTo(cx, stx, mx, treshhold, 8, 0.0, 1.0, curP + nbInterm - 1);
184 void Path::Convert(double treshhold)
277 RecCubicTo(curX, nData->start, nextX, nData->end, treshhold, 8);
294 DoArc(curX, nextX, nData->rx, nData->ry, nData->angle, nData->large, nData->clockwise, treshhold);
320 RecBezierTo(midX, curX, nextX, treshhold, 8);
351 RecBezierTo(cx, stx, mx, treshhold, 8);
375 RecBezierTo(cx, stx, mx, treshhold, 8);
399 void Path::ConvertEvenLines(double treshhold)
462 if ( (segL > treshhold) && (treshhold > 0) ) {
463 for (double i = treshhold; i < segL; i += treshhold) {
492 if ( (segL > treshhold) && (treshhold > 0)) {
493 for (double i = treshhold; i < segL; i += treshhold) {
515 RecCubicTo(curX, nData->start, nextX, nData->end, treshhold, 8, 4 * treshhold);
532 DoArc(curX, nextX, nData->rx, nData->ry, nData->angle, nData->large, nData->clockwise, treshhold);
559 RecBezierTo(midX, curX, nextX, treshhold, 8, 4 * treshhold);
590 RecBezierTo(cx, stx, mx, treshhold, 8, 4 * treshhold);
614 RecBezierTo(cx, stx, mx, treshhold, 8, 4 * treshhold);