Lines Matching refs:poly
40 ::basegfx::B2DPolygon poly; in calcCenteredClock()
46 poly.append( p ); in calcCenteredClock()
48 poly.append( ::basegfx::B2DPoint( -e, -e ) ); in calcCenteredClock()
50 poly.append( ::basegfx::B2DPoint( -e, e ) ); in calcCenteredClock()
52 poly.append( ::basegfx::B2DPoint( e, e ) ); in calcCenteredClock()
54 poly.append( ::basegfx::B2DPoint( e, -e ) ); in calcCenteredClock()
55 poly.append( ::basegfx::B2DPoint( 0.0, -e ) ); in calcCenteredClock()
56 poly.append( ::basegfx::B2DPoint( 0.0, 0.0 ) ); in calcCenteredClock()
57 poly.setClosed(true); in calcCenteredClock()
58 return poly; in calcCenteredClock()
64 ::basegfx::B2DPolygon poly( calcCenteredClock(t) ); in operator ()()
65 poly.transform( aTransform ); in operator ()()
66 return ::basegfx::B2DPolyPolygon(poly); in operator ()()