Lines Matching refs:interpolate
672 const B2DPoint aS1L(interpolate(maStartPoint, maControlPointA, t)); in interpolatePoint()
673 const B2DPoint aS1C(interpolate(maControlPointA, maControlPointB, t)); in interpolatePoint()
674 const B2DPoint aS1R(interpolate(maControlPointB, maEndPoint, t)); in interpolatePoint()
675 const B2DPoint aS2L(interpolate(aS1L, aS1C, t)); in interpolatePoint()
676 const B2DPoint aS2R(interpolate(aS1C, aS1R, t)); in interpolatePoint()
678 return interpolate(aS2L, aS2R, t); in interpolatePoint()
682 return interpolate(maStartPoint, maEndPoint, t); in interpolatePoint()
801 const B2DPoint aS1L(interpolate(maStartPoint, maControlPointA, t)); in split()
802 const B2DPoint aS1C(interpolate(maControlPointA, maControlPointB, t)); in split()
803 const B2DPoint aS1R(interpolate(maControlPointB, maEndPoint, t)); in split()
804 const B2DPoint aS2L(interpolate(aS1L, aS1C, t)); in split()
805 const B2DPoint aS2R(interpolate(aS1C, aS1R, t)); in split()
806 const B2DPoint aS3C(interpolate(aS2L, aS2R, t)); in split()
826 const B2DPoint aSplit(interpolate(maStartPoint, maEndPoint, t)); in split()
872 const B2DPoint aPoint(interpolate(getStartPoint(), getEndPoint(), fSplit)); in snippet()
906 const B2DPoint aPointA(interpolate(getStartPoint(), getEndPoint(), fStart)); in snippet()
907 const B2DPoint aPointB(interpolate(getStartPoint(), getEndPoint(), fEnd)); in snippet()