Lines Matching refs:aCurrentEdge

1322 				B2DCubicBezier aCurrentEdge;  in applyLineDashing()  local
1324 aCurrentEdge.setStartPoint(rCandidate.getB2DPoint(0)); in applyLineDashing()
1338 aCurrentEdge.setControlPointA(rCandidate.getNextControlPoint(a)); in applyLineDashing()
1339 aCurrentEdge.setControlPointB(rCandidate.getPrevControlPoint(nNextIndex)); in applyLineDashing()
1340 aCurrentEdge.setEndPoint(rCandidate.getB2DPoint(nNextIndex)); in applyLineDashing()
1343 aCurrentEdge.testAndSolveTrivialBezier(); in applyLineDashing()
1345 if(aCurrentEdge.isBezier()) in applyLineDashing()
1348 const B2DCubicBezierHelper aCubicBezierHelper(aCurrentEdge); in applyLineDashing()
1363 B2DCubicBezier aBezierSnippet(aCurrentEdge.snippet(fBezierSplitStart, fBezierSplitEnd)); in applyLineDashing()
1399 aCurrentEdge.split(fBezierSplit, 0, &aRight); in applyLineDashing()
1416 const double fEdgeLength(aCurrentEdge.getEdgeLength()); in applyLineDashing()
1430 …aSnippet.append(interpolate(aCurrentEdge.getStartPoint(), aCurrentEdge.getEndPoint(), fLastDotDash… in applyLineDashing()
1433 …aSnippet.append(interpolate(aCurrentEdge.getStartPoint(), aCurrentEdge.getEndPoint(), fDotDashMovi… in applyLineDashing()
1461 …aSnippet.append(interpolate(aCurrentEdge.getStartPoint(), aCurrentEdge.getEndPoint(), fLastDotDash… in applyLineDashing()
1464 aSnippet.append(aCurrentEdge.getEndPoint()); in applyLineDashing()
1473 aCurrentEdge.setStartPoint(aCurrentEdge.getEndPoint()); in applyLineDashing()
3045 B2DCubicBezier aCurrentEdge; in reSegmentPolygonEdges() local
3048 aCurrentEdge.setStartPoint(rCandidate.getB2DPoint(0)); in reSegmentPolygonEdges()
3049 aRetval.append(aCurrentEdge.getStartPoint()); in reSegmentPolygonEdges()
3055 aCurrentEdge.setControlPointA(rCandidate.getNextControlPoint(a)); in reSegmentPolygonEdges()
3056 aCurrentEdge.setControlPointB(rCandidate.getPrevControlPoint(nNextIndex)); in reSegmentPolygonEdges()
3057 aCurrentEdge.setEndPoint(rCandidate.getB2DPoint(nNextIndex)); in reSegmentPolygonEdges()
3059 if(aCurrentEdge.isBezier()) in reSegmentPolygonEdges()
3068 aCurrentEdge.split(fSplitPoint, &aLeftPart, &aCurrentEdge); in reSegmentPolygonEdges()
3074 …aRetval.appendBezierSegment(aCurrentEdge.getControlPointA(), aCurrentEdge.getControlPointB(), aCur… in reSegmentPolygonEdges()
3083 …const B2DPoint aSplitPoint(interpolate(aCurrentEdge.getStartPoint(), aCurrentEdge.getEndPoint(), f… in reSegmentPolygonEdges()
3086 aCurrentEdge.setStartPoint(aSplitPoint); in reSegmentPolygonEdges()
3091 aRetval.append(aCurrentEdge.getEndPoint()); in reSegmentPolygonEdges()
3095 aCurrentEdge.setStartPoint(aCurrentEdge.getEndPoint()); in reSegmentPolygonEdges()