Home
last modified time | relevance | path

Searched refs:fEdgeLength (Results 1 – 4 of 4) sorted by relevance

/trunk/main/basegfx/source/polygon/
H A Db3dpolygontools.cxx277 double fEdgeLength(fZero); in getPositionAbsolute() local
326 fEdgeLength = getEdgeLength(rCandidate, nIndex); in getPositionAbsolute()
328 if(fTools::moreOrEqual(fDistance, fEdgeLength)) in getPositionAbsolute()
331 fDistance -= fEdgeLength; in getPositionAbsolute()
353 if(!fTools::equalZero(fEdgeLength)) in getPositionAbsolute()
355 fRelative = fDistance / fEdgeLength; in getPositionAbsolute()
419 const double fEdgeLength(B3DVector(aNextPoint - aCurrentPoint).getLength()); in applyLineDashing() local
421 if(!fTools::equalZero(fEdgeLength)) in applyLineDashing()
423 while(fTools::less(fDotDashMovingLength, fEdgeLength)) in applyLineDashing()
433 … aSnippet.append(interpolate(aCurrentPoint, aNextPoint, fLastDotDashMovingLength / fEdgeLength)); in applyLineDashing()
[all …]
H A Db2dpolygontools.cxx685 double fEdgeLength(getEdgeLength(rCandidate, nIndex)); in getPositionAbsolute() local
696 if(nIndex < nEdgeCount && fTools::moreOrEqual(fDistance, fEdgeLength)) in getPositionAbsolute()
699 fDistance -= fEdgeLength; in getPositionAbsolute()
700 fEdgeLength = getEdgeLength(rCandidate, ++nIndex); in getPositionAbsolute()
716 if(fTools::moreOrEqual(fDistance, fEdgeLength)) in getPositionAbsolute()
756 const double fRelativeInEdge(fDistance / fEdgeLength); in getPositionAbsolute()
824 const double fEdgeLength(getEdgeLength(rCandidate, a)); in getSnippetAbsolute() local
839 …Tools::moreOrEqual(fFrom, fPositionOfStart) && fTools::less(fFrom, fPositionOfStart + fEdgeLength)) in getSnippetAbsolute()
842 if(fTools::equalZero(fEdgeLength)) in getSnippetAbsolute()
881 … const double fRelValue((fFrom - fPositionOfStart) / fEdgeLength); in getSnippetAbsolute()
[all …]
H A Db2dlinegeometry.cxx356 const double fEdgeLength(aPureEdgeVector.getLength()); in createAreaGeometryForEdge() local
357 const bool bIsEdgeLengthZero(fTools::equalZero(fEdgeLength)); in createAreaGeometryForEdge()
441 const double fScale(bIsEdgeLengthZero ? 1.0 : fLength / fEdgeLength); in createAreaGeometryForEdge()
504 const double fScale(bIsEdgeLengthZero ? 1.0 : fLength / fEdgeLength); in createAreaGeometryForEdge()
/trunk/main/basegfx/source/curve/
H A Db2dcubicbezier.cxx502 const double fEdgeLength(rEdge.getEdgeLength()); in impGetLength() local
504 …rrentDeviation(fTools::equalZero(fControlPolygonLength) ? 0.0 : 1.0 - (fEdgeLength / fControlPolyg… in impGetLength()
508 return (fEdgeLength + fControlPolygonLength) * 0.5; in impGetLength()