THE FUTURE SHAPES 2D_CIRCLE AND 2D_RECTANGLE WILL BE TRANSPARENT
ACTION
The command 2D_FILL_ON does not enable the filling of shapes 2D_CIRCLE and 2D_RECTANGLE, which are therefore transparent.
This command does not apply to the existing shapes 2D_CIRCLE and 2D_RECTANGLE, but to the future ones.
SYNTAX:
2D_FILL_OFF
USE ERROR EXAMPLE
rem create an object PICTURE for drawing
picture 1
rem PICTURE takes a size of 300 x 300 pixels
width 1,300:height 1,300
rem PICTURE is the target for drawing
2d_target_is 1
rem draw a rectangle with yellow border
rem and transparent
2d_fill_off
2d_clear
2d_pen_width 6
2d_pen_color 250,250,0
2d_fill_color 250,0,250
2d_rectangle 10,10,400,350
2D_FILL_OFF
2D_FILL_OFF
SEE ALSO
2D_FILL_ON
2D_CIRCLE
2D_RECTANGLE
2D_ELLIPSE