Lines Matching refs:pElement
223 static void MyCGPathApplierFunc( void* pData, const CGPathElement* pElement ) in MyCGPathApplierFunc() argument
228 switch( pElement->type ) in MyCGPathApplierFunc()
237 if( pElement->type != kCGPathElementMoveToPoint ) in MyCGPathApplierFunc()
240 rPolygon.append( basegfx::B2DPoint( +pElement->points[0].x, -pElement->points[0].y ) ); in MyCGPathApplierFunc()
243 rPolygon.append( basegfx::B2DPoint( +pElement->points[2].x, -pElement->points[2].y ) ); in MyCGPathApplierFunc()
244 …rPolygon.setNextControlPoint( nPointCount-1, basegfx::B2DPoint( pElement->points[0].x, -pElement->… in MyCGPathApplierFunc()
245 …rPolygon.setPrevControlPoint( nPointCount+0, basegfx::B2DPoint( pElement->points[1].x, -pElement->… in MyCGPathApplierFunc()
249 const basegfx::B2DPoint aCtrPt1( (aStartPt.getX() + 2* pElement->points[0].x) / 3.0, in MyCGPathApplierFunc()
250 (aStartPt.getY() - 2 * pElement->points[0].y) / 3.0 ); in MyCGPathApplierFunc()
251 const basegfx::B2DPoint aCtrPt2( (+2 * +pElement->points[0].x + pElement->points[1].x) / 3.0, in MyCGPathApplierFunc()
252 (-2 * pElement->points[0].y - pElement->points[1].y) / 3.0 ); in MyCGPathApplierFunc()
253 rPolygon.append( basegfx::B2DPoint( +pElement->points[1].x, -pElement->points[1].y ) ); in MyCGPathApplierFunc()