Lines Matching refs:aCurrentPoint

167 					const B3DPoint aCurrentPoint(rCandidate.getB3DPoint(a));  in getSignedArea()  local
172 fRetval += aPreviousPoint.getZ() * aCurrentPoint.getY(); in getSignedArea()
173 fRetval -= aPreviousPoint.getY() * aCurrentPoint.getZ(); in getSignedArea()
176 fRetval += aPreviousPoint.getX() * aCurrentPoint.getZ(); in getSignedArea()
177 fRetval -= aPreviousPoint.getZ() * aCurrentPoint.getX(); in getSignedArea()
180 fRetval += aPreviousPoint.getX() * aCurrentPoint.getY(); in getSignedArea()
181 fRetval -= aPreviousPoint.getY() * aCurrentPoint.getX(); in getSignedArea()
186 aPreviousPoint = aCurrentPoint; in getSignedArea()
235 const B3DPoint aCurrentPoint(rCandidate.getB3DPoint(nIndex)); in getEdgeLength() local
237 const B3DVector aVector(aNextPoint - aCurrentPoint); in getEdgeLength()
257 const B3DPoint aCurrentPoint(rCandidate.getB3DPoint(a)); in getLength() local
259 const B3DVector aVector(aNextPoint - aCurrentPoint); in getLength()
403 B3DPoint aCurrentPoint(rCandidate.getB3DPoint(0)); in applyLineDashing() local
419 const double fEdgeLength(B3DVector(aNextPoint - aCurrentPoint).getLength()); in applyLineDashing()
433 … aSnippet.append(interpolate(aCurrentPoint, aNextPoint, fLastDotDashMovingLength / fEdgeLength)); in applyLineDashing()
436 … aSnippet.append(interpolate(aCurrentPoint, aNextPoint, fDotDashMovingLength / fEdgeLength)); in applyLineDashing()
464 … aSnippet.append(interpolate(aCurrentPoint, aNextPoint, fLastDotDashMovingLength / fEdgeLength)); in applyLineDashing()
475 aCurrentPoint = aNextPoint; in applyLineDashing()
883 B3DPoint aCurrentPoint(rCandidate.getB3DPoint(nPointCount - 1)); in isInside() local
894 const B3DPoint aPreviousPoint(aCurrentPoint); in isInside()
895 aCurrentPoint = rCandidate.getB3DPoint(a); in isInside()
899 const bool bCompZB(fTools::more(aCurrentPoint.getZ(), rPoint.getZ())); in isInside()
905 const bool bCompYB(fTools::more(aCurrentPoint.getY(), rPoint.getY())); in isInside()
917 aCurrentPoint.getY() - (aCurrentPoint.getZ() - rPoint.getZ()) * in isInside()
918 (aPreviousPoint.getY() - aCurrentPoint.getY()) / in isInside()
919 (aPreviousPoint.getZ() - aCurrentPoint.getZ())); in isInside()
935 const B3DPoint aPreviousPoint(aCurrentPoint); in isInside()
936 aCurrentPoint = rCandidate.getB3DPoint(a); in isInside()
940 const bool bCompZB(fTools::more(aCurrentPoint.getZ(), rPoint.getZ())); in isInside()
946 const bool bCompXB(fTools::more(aCurrentPoint.getX(), rPoint.getX())); in isInside()
958 aCurrentPoint.getX() - (aCurrentPoint.getZ() - rPoint.getZ()) * in isInside()
959 (aPreviousPoint.getX() - aCurrentPoint.getX()) / in isInside()
960 (aPreviousPoint.getZ() - aCurrentPoint.getZ())); in isInside()
976 const B3DPoint aPreviousPoint(aCurrentPoint); in isInside()
977 aCurrentPoint = rCandidate.getB3DPoint(a); in isInside()
981 const bool bCompYB(fTools::more(aCurrentPoint.getY(), rPoint.getY())); in isInside()
987 const bool bCompXB(fTools::more(aCurrentPoint.getX(), rPoint.getX())); in isInside()
999 aCurrentPoint.getX() - (aCurrentPoint.getY() - rPoint.getY()) * in isInside()
1000 (aPreviousPoint.getX() - aCurrentPoint.getX()) / in isInside()
1001 (aPreviousPoint.getY() - aCurrentPoint.getY())); in isInside()
1102 B3DPoint aCurrentPoint(rCandidate.getB3DPoint(0)); in isPointOnPolygon() local
1108 if(isPointOnLine(aCurrentPoint, aNextPoint, rPoint, bWithPoints)) in isPointOnPolygon()
1113 aCurrentPoint = aNextPoint; in isPointOnPolygon()