Lines Matching refs:curX

37     Geom::Point curX;
45 curX = dynamic_cast<PathDescrMoveTo *>(descr_cmd[0])->p;
48 curX[Geom::X] = curX[Geom::Y] = 0;
50 lastMoveTo = AddPoint(curX, 0, 0.0, true);
61 AddForcedPoint(curX, curP, 1.0);
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);
121 Geom::Point bx = curX;
179 curX = nextX;
200 Geom::Point curX;
208 curX = dynamic_cast<PathDescrMoveTo *>(descr_cmd[0])->p;
211 curX[0] = curX[1] = 0;
213 lastMoveTo = AddPoint(curX, true);
225 descr_cmd[curP]->associated = AddForcedPoint(curX);
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);
322 Geom::Point bx = curX;
395 curX = nextX;
415 Geom::Point curX;
423 curX = dynamic_cast<PathDescrMoveTo *>(descr_cmd[0])->p;
426 curX[0] = curX[1] = 0;
428 lastMoveTo = AddPoint(curX, true);
440 descr_cmd[curP]->associated = AddForcedPoint(curX);
460 nexcur = nextX - curX;
465 nX = (segL - i) * curX + i * nextX;
490 Geom::Point nexcur = nextX - curX;
494 Geom::Point nX = ((segL - i) * curX + i * nextX) / segL;
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);
561 Geom::Point bx = curX;
633 if ( Geom::LInfty(curX - nextX) > 0.00001 ) {
634 curX = nextX;