 |
|
BaselScript |
Beschreibung
Draw point
Zeichnen von Punkten durch Befehl:
draw tile=point .... Parameterliste
Parameter:
name = xxx
x1 = x_Koordinate
y1 = y_Koordinate
color = Wert
stroke_width = Wert ( default = 1)
transparent = (0-100)
visible =0/1
Beispiel:
scene=1 name="Draw points" bgcolor=#ffffff mode =graphic
section init
clear canvas
draw tile=point name = p1 x1= 300 y1= 300 color=#000000 filling = 1 stroke_width= 60
draw tile=point name = p2 x1=550 y1= 550 color=#0000ff filling = 0 stroke_width= 20
draw canvas
end section
end scene 1