Lines Matching refs:aPoints
190 uno::Sequence< geometry::RealPoint2D > aPoints(4); in drawRect() local
193 aPoints[0] = geometry::RealPoint2D( rRect.Left(), rRect.Top() ); in drawRect()
194 aPoints[1] = geometry::RealPoint2D( rRect.Left(), rRect.Bottom() ); in drawRect()
195 aPoints[2] = geometry::RealPoint2D( rRect.Right(), rRect.Bottom() ); in drawRect()
196 aPoints[3] = geometry::RealPoint2D( rRect.Right(), rRect.Top() ); in drawRect()
199 aPolys[0] = aPoints; in drawRect()
251 uno::Sequence< geometry::RealPoint2D > aPoints( nLength ); in drawHilbert() local
254 aPoints[0] = geometry::RealPoint2D( anchor_x, anchor_y ); in drawHilbert()
260 aPoints[i+1] = geometry::RealPoint2D( aPoints[i].X, in drawHilbert()
261 aPoints[i].Y - SCALE ); in drawHilbert()
264 aPoints[i+1] = geometry::RealPoint2D( aPoints[i].X, in drawHilbert()
265 aPoints[i].Y + SCALE ); in drawHilbert()
268 aPoints[i+1] = geometry::RealPoint2D( aPoints[i].X - SCALE, in drawHilbert()
269 aPoints[i].Y ); in drawHilbert()
272 aPoints[i+1] = geometry::RealPoint2D( aPoints[i].X + SCALE, in drawHilbert()
273 aPoints[i].Y ); in drawHilbert()
279 aPolys[0] = aPoints; in drawHilbert()
521 uno::Sequence< geometry::RealPoint2D > aPoints (sides); in drawRegularPolygon() local
526 aPoints[i]= geometry::RealPoint2D( centerx + r * cos(i*2 * M_PI/sides), in drawRegularPolygon()
530 aPolys[0] = aPoints; in drawRegularPolygon()