 |
|
BaselScript |
Beschreibung
Draw ellipse
draw tile=ellipse .... Parameterliste
Parameter:
x1 = x-Koordinate
y1 = y-Koordinate
name = Name
filling = 0/1
color = Wert
stroke_width = Wert
width = value
height = value
transparent = (0-100)
Beispiel:
scene =1 name = ellipse bgcolor=#bbff99 mode=graphic
section init
clear canvas
#x1 = 100
#y1 = 100
draw tile = ellipse name=#c1 x1 = 100 y1 = #y1 width= 600 height = 190 color=blue filling = 1 stroke_width= 5
draw tile = ellipse name=#c2 x1 = 100 y1 = #y1 width= 400 height = 90 color=red filling = 0 stroke_width= 5
draw canvas
end section
end scene 1