Lines Matching refs:maEnd

41     return hypot( maStart.X() - maEnd.X(), maStart.Y() - maEnd.Y() );  in GetLength()
67 const double fAx = maEnd.X() - maStart.X(); in Intersection()
68 const double fAy = maEnd.Y() - maStart.Y(); in Intersection()
69 const double fBx = rLine.maStart.X() - rLine.maEnd.X(); in Intersection()
70 const double fBy = rLine.maStart.Y() - rLine.maEnd.Y(); in Intersection()
121 const sal_Bool bEndInside = rRect.IsInside( maEnd ); in Intersection()
128 rIntersection.maEnd = maEnd; in Intersection()
154 rIntersection.maEnd = aIntersect2; in Intersection()
162 rIntersection.maEnd = maStart; in Intersection()
163 else if( ( maEnd != aIntersect1 ) && bEndInside ) in Intersection()
164 rIntersection.maEnd = maEnd; in Intersection()
166 rIntersection.maEnd = rIntersection.maStart; in Intersection()
181 if ( maStart != maEnd ) in NearestPoint()
183 const double fDistX = maEnd.X() - maStart.X(); in NearestPoint()
184 const double fDistY = maStart.Y() - maEnd.Y(); in NearestPoint()
197 aRetPt = maEnd; in NearestPoint()
211 if( maStart != maEnd ) in GetDistance()
213 const double fDistX = maEnd.X() - maStart.X(); in GetDistance()
214 const double fDistY = maEnd.Y() - maStart.Y(); in GetDistance()
232 fDist = hypot( maEnd.X() - rPtX, maEnd.Y() - rPtY ); in GetDistance()
254 if( maStart.X() == maEnd.X() ) in Enum()
256 const long nEndY = maEnd.Y(); in Enum()
280 else if( maStart.Y() == maEnd.Y() ) in Enum()
282 const long nEndX = maEnd.X(); in Enum()
308 const long nDX = labs( maEnd.X() - maStart.X() ); in Enum()
309 const long nDY = labs( maEnd.Y() - maStart.Y() ); in Enum()
312 const long nEndX = maEnd.X(); in Enum()
313 const long nEndY = maEnd.Y(); in Enum()