Lines Matching refs:fLength
267 B3DPoint getPositionAbsolute(const B3DPolygon& rCandidate, double fDistance, double fLength) in getPositionAbsolute() argument
280 if(fTools::equalZero(fLength)) in getPositionAbsolute()
282 fLength = getLength(rCandidate); in getPositionAbsolute()
291 sal_uInt32 nCount(sal_uInt32(-fDistance / fLength)); in getPositionAbsolute()
292 fDistance += double(nCount + 1L) * fLength; in getPositionAbsolute()
303 if(fTools::moreOrEqual(fDistance, fLength)) in getPositionAbsolute()
308 sal_uInt32 nCount(sal_uInt32(fDistance / fLength)); in getPositionAbsolute()
309 fDistance -= (double)(nCount) * fLength; in getPositionAbsolute()
366 B3DPoint getPositionRelative(const B3DPolygon& rCandidate, double fDistance, double fLength) in getPositionRelative() argument
369 if(fTools::equalZero(fLength)) in getPositionRelative()
371 fLength = getLength(rCandidate); in getPositionRelative()
376 return getPositionAbsolute(rCandidate, fDistance * fLength, fLength); in getPositionRelative()