Lines Matching refs:nPointIndex
208 sal_Int32 nPointIndex, in getPoints() argument
216 nPointIndex, in getPoints()
244 sal_Int32 nPointIndex ) throw (lang::IndexOutOfBoundsException,uno::RuntimeException) in getPoint() argument
251 if( nPointIndex < 0 || nPointIndex >= static_cast<sal_Int32>(rPoly.count()) ) in getPoint()
254 return unotools::point2DFromB2DPoint( rPoly.getB2DPoint( nPointIndex ) ); in getPoint()
260 sal_Int32 nPointIndex ) throw (lang::IndexOutOfBoundsException,uno::RuntimeException) in setPoint() argument
268 if( nPointIndex < 0 || nPointIndex >= static_cast<sal_Int32>(aPoly.count()) ) in setPoint()
271 aPoly.setB2DPoint( nPointIndex, in setPoint()
279 sal_Int32 nPointIndex, in getBezierSegments() argument
286 nPointIndex, in getBezierSegments()
313 … sal_Int32 nPointIndex ) throw (lang::IndexOutOfBoundsException, in getBezierSegment() argument
322 if( nPointIndex < 0 || nPointIndex >= static_cast<sal_Int32>(nPointCount) ) in getBezierSegment()
325 const B2DPoint& rPt( rPoly.getB2DPoint( nPointIndex ) ); in getBezierSegment()
326 const B2DPoint& rCtrl0( rPoly.getNextControlPoint(nPointIndex) ); in getBezierSegment()
327 const B2DPoint& rCtrl1( rPoly.getPrevControlPoint((nPointIndex + 1) % nPointCount) ); in getBezierSegment()
339 … sal_Int32 nPointIndex ) throw (lang::IndexOutOfBoundsException, in setBezierSegment() argument
349 if( nPointIndex < 0 || nPointIndex >= static_cast<sal_Int32>(nPointCount) ) in setBezierSegment()
352 aPoly.setB2DPoint( nPointIndex, in setBezierSegment()
355 aPoly.setNextControlPoint(nPointIndex, in setBezierSegment()
357 aPoly.setPrevControlPoint((nPointIndex + 1) % nPointCount, in setBezierSegment()
366 sal_Int32 nPointIndex, in getSubsetPolyPolygon() argument
376 !nPointIndex && in getSubsetPolyPolygon()
396 if( nPointIndex && i==nPolygonIndex ) in getSubsetPolyPolygon()
403 if( !nPolyCount && nPointIndex ) in getSubsetPolyPolygon()
406 nFirstPoint = nPointIndex; in getSubsetPolyPolygon()