Can I "stamp" a brush down onto the display as if it were literally a rubber stamp, move it and stamp it elsewhere too leaving two rubber stamps on the display while still having the initial brush?
Nathan
Using a Brush as a Pattern
Re: Using a Brush as a Pattern
a) Why ? , you can draw brush as many times you want
example
b) this possible can be done by drawing to BGPIC (the background pic)
as you can replace bgpic anytime, so maybe ...
example
Code: Select all
CreateBrush(1,100,100)
SelectBrush(1)
Circle(10,10,40,#RED)
DisplayBrush(1,10,10)
DisplayBrush(1,100,100)
DisplayBrush(1,200,200)
Repeat
WaitEvent
Forever
as you can replace bgpic anytime, so maybe ...
Christos
Re: Using a Brush as a Pattern
Cool, thanks!