Lines Matching refs:aCurSegment
1346 Line aCurSegment( rPoly[ 0 ], Point() ); in ImplDrawHatchLine() local
1350 aCurSegment.SetEnd( rPoly[ (sal_uInt16)( i % nCount ) ] ); in ImplDrawHatchLine()
1353 if( rLine.Intersection( aCurSegment, fX, fY ) ) in ImplDrawHatchLine()
1355 if( ( fabs( fX - aCurSegment.GetStart().X() ) <= 0.0000001 ) && in ImplDrawHatchLine()
1356 ( fabs( fY - aCurSegment.GetStart().Y() ) <= 0.0000001 ) ) in ImplDrawHatchLine()
1358 …Segment( rPoly[ (sal_uInt16)( ( i > 1 ) ? ( i - 2 ) : ( nCount - 1 ) ) ], aCurSegment.GetStart() ); in ImplDrawHatchLine()
1360 const double fCurDistance = rLine.GetDistance( aCurSegment.GetEnd() ); in ImplDrawHatchLine()
1368 else if( ( fabs( fX - aCurSegment.GetEnd().X() ) <= 0.0000001 ) && in ImplDrawHatchLine()
1369 ( fabs( fY - aCurSegment.GetEnd().Y() ) <= 0.0000001 ) ) in ImplDrawHatchLine()
1371 const Line aNextSegment( aCurSegment.GetEnd(), rPoly[ (sal_uInt16)( ( i + 1 ) % nCount ) ] ); in ImplDrawHatchLine()
1374 ( rLine.GetDistance( aCurSegment.GetStart() ) > 0.0 ) ) in ImplDrawHatchLine()
1386 aCurSegment.SetStart( aCurSegment.GetEnd() ); in ImplDrawHatchLine()