Hi
I cant unterstand why this is drawing a square by SIZE_RASTER * SIZE_RASTER onto my image, it should draw a "halfpipe", does anyone find something wrong with this?
1 2 3 4 | image_item[ 6 ].setColor(Color.black); image_item[ 6 ].fill(); image_item[ 6 ].setColor( new Color( 0 , 0 , 0 , 0 )); image_item[ 6 ].fillOval(-SIZE_RASTER, 0 ,SIZE_RASTER * 2 ,SIZE_RASTER * 2 ); |