Lines Matching refs:aVecB
249 const B2DVector aVecB(rNextB - rCurrB); in findEdgeCutsTwoEdges() local
250 double fCut(aVecA.cross(aVecB)); in findEdgeCutsTwoEdges()
256 …fCut = (aVecB.getY() * (rCurrB.getX() - rCurrA.getX()) + aVecB.getX() * (rCurrA.getY() - rCurrB.ge… in findEdgeCutsTwoEdges()
264 if(fabs(aVecB.getX()) > fabs(aVecB.getY())) 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()
332 const B2DVector aVecB(aNextB - aCurrB); in findCutsAndTouchesAndCommonForBezier() local
333 double fCutA(aVecA.cross(aVecB)); in findCutsAndTouchesAndCommonForBezier()
339 …fCutA = (aVecB.getY() * (aCurrB.getX() - aCurrA.getX()) + aVecB.getX() * (aCurrA.getY() - aCurrB.g… in findCutsAndTouchesAndCommonForBezier()
349 if(fabs(aVecB.getX()) > fabs(aVecB.getY())) in findCutsAndTouchesAndCommonForBezier()
351 fCutB = (aCurrA.getX() + (fCutA * aVecA.getX()) - aCurrB.getX()) / aVecB.getX(); in findCutsAndTouchesAndCommonForBezier()
355 fCutB = (aCurrA.getY() + (fCutA * aVecA.getY()) - aCurrB.getY()) / aVecB.getY(); in findCutsAndTouchesAndCommonForBezier()