Lines Matching refs:rPoint
783 void append(const basegfx::B2DPoint& rPoint) in append() argument
786 const CoordinateData2D aCoordinate(rPoint); in append()
796 void insert(sal_uInt32 nIndex, const basegfx::B2DPoint& rPoint, sal_uInt32 nCount) in insert() argument
801 CoordinateData2D aCoordinate(rPoint); in insert()
901 …(const basegfx::B2DVector& rNext, const basegfx::B2DVector& rPrev, const basegfx::B2DPoint& rPoint) in appendBezierSegment() argument
911 insert(nCount, rPoint, 1); in appendBezierSegment()
1272 void B2DPolygon::insert(sal_uInt32 nIndex, const B2DPoint& rPoint, sal_uInt32 nCount) in insert() argument
1278 mpPolygon->insert(nIndex, rPoint, nCount); in insert()
1282 void B2DPolygon::append(const B2DPoint& rPoint, sal_uInt32 nCount) in append() argument
1286 mpPolygon->insert(mpPolygon->count(), rPoint, nCount); in append()
1290 void B2DPolygon::append(const B2DPoint& rPoint) in append() argument
1292 mpPolygon->append(rPoint); in append()
1400 const B2DPoint& rPoint) in appendBezierSegment() argument
1403 const B2DVector aNewPrevVector(rPrevControlPoint - rPoint); in appendBezierSegment()
1407 mpPolygon->insert(mpPolygon->count(), rPoint, 1); in appendBezierSegment()
1411 mpPolygon->appendBezierSegment(aNewNextVector, aNewPrevVector, rPoint); in appendBezierSegment()