Lines Matching refs:rEndPt
446 bool RegionBand::InsertLine(const Point& rStartPt, const Point& rEndPt, long nLineId) in InsertLine() argument
451 if ( rStartPt == rEndPt ) in InsertLine()
457 LineType eLineType = (rStartPt.Y() > rEndPt.Y()) ? LINE_DESCENDING : LINE_ASCENDING; in InsertLine()
458 if ( rStartPt.X() == rEndPt.X() ) in InsertLine()
461 const long nEndY = rEndPt.Y(); in InsertLine()
472 (aNewPoint == rEndPt) || (aNewPoint == rStartPt), in InsertLine()
482 (aNewPoint == rEndPt) || (aNewPoint == rStartPt), in InsertLine()
487 else if ( rStartPt.Y() != rEndPt.Y() ) in InsertLine()
489 const long nDX = labs( rEndPt.X() - rStartPt.X() ); in InsertLine()
490 const long nDY = labs( rEndPt.Y() - rStartPt.Y() ); in InsertLine()
493 const long nEndX = rEndPt.X(); in InsertLine()
494 const long nEndY = rEndPt.Y(); in InsertLine()