Page 1 of 1

Using a Brush as a Pattern

Posted: Fri Aug 28, 2026 12:40 am
by NathanH
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

Re: Using a Brush as a Pattern

Posted: Fri Aug 28, 2026 12:54 am
by plouf
a) Why ? , you can draw brush as many times you want
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
b) this possible can be done by drawing to BGPIC (the background pic)
as you can replace bgpic anytime, so maybe ...

Re: Using a Brush as a Pattern

Posted: Fri Aug 28, 2026 1:34 am
by NathanH
Cool, thanks!