Home
last modified time | relevance | path

Searched refs:aCurrentPoint (Results 1 – 2 of 2) sorted by relevance

/AOO41X/main/basegfx/source/polygon/
H A Db3dpolygontools.cxx167 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()
[all …]
H A Db2dpolygontools.cxx412 B2DPoint aCurrentPoint(aCandidate.getB2DPoint(nPointCount - 1L)); in isInside() local
416 const B2DPoint aPreviousPoint(aCurrentPoint); in isInside()
417 aCurrentPoint = aCandidate.getB2DPoint(a); in isInside()
421 const bool bCompYB(fTools::more(aCurrentPoint.getY(), rPoint.getY())); in isInside()
427 const bool bCompXB(fTools::more(aCurrentPoint.getX(), rPoint.getX())); in isInside()
439 aCurrentPoint.getX() - (aCurrentPoint.getY() - rPoint.getY()) * in isInside()
440 (aPreviousPoint.getX() - aCurrentPoint.getX()) / in isInside()
441 (aPreviousPoint.getY() - aCurrentPoint.getY())); in isInside()
516 const B2DPoint aCurrentPoint(aCandidate.getB2DPoint(a)); in getSignedArea() local
518 fRetval += aPreviousPoint.getX() * aCurrentPoint.getY(); in getSignedArea()
[all …]