Lines Matching refs:fCut
59 temporaryPoint(const B2DPoint& rNewPoint, sal_uInt32 nIndex, double fCut) in temporaryPoint() argument
62 mfCut(fCut) in temporaryPoint()
250 double fCut(aVecA.cross(aVecB)); in findEdgeCutsTwoEdges() local
252 if(!fTools::equalZero(fCut)) in findEdgeCutsTwoEdges()
256 …fCut = (aVecB.getY() * (rCurrB.getX() - rCurrA.getX()) + aVecB.getX() * (rCurrA.getY() - rCurrB.ge… in findEdgeCutsTwoEdges()
258 if(fTools::more(fCut, fZero) && fTools::less(fCut, fOne)) in findEdgeCutsTwoEdges()
266 fCut2 = (rCurrA.getX() + (fCut * aVecA.getX()) - rCurrB.getX()) / aVecB.getX(); in findEdgeCutsTwoEdges()
270 fCut2 = (rCurrA.getY() + (fCut * aVecA.getY()) - rCurrB.getY()) / aVecB.getY(); in findEdgeCutsTwoEdges()
278 const B2DPoint aCutPoint(interpolate(rCurrA, rNextA, fCut)); in findEdgeCutsTwoEdges()
279 rTempPointsA.push_back(temporaryPoint(aCutPoint, nIndA, fCut)); in findEdgeCutsTwoEdges()
679 const double fCut((bTestUsingX) in findTouchesOnEdge() local
685 if(fTools::more(fCut, fZero) && fTools::less(fCut, fOne)) in findTouchesOnEdge()
687 rTempPoints.push_back(temporaryPoint(aTestPoint, nInd, fCut)); in findTouchesOnEdge()