Using a Brush as a Pattern

Find quick help here to get you started with Hollywood
Post Reply
NathanH
Posts: 148
Joined: Sun Jul 05, 2015 1:29 am
Location: Caldwell, Idaho

Using a Brush as a Pattern

Post 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
plouf
Posts: 749
Joined: Sun Feb 04, 2018 11:51 pm
Location: Athens,Greece

Re: Using a Brush as a Pattern

Post 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 ...
Christos
NathanH
Posts: 148
Joined: Sun Jul 05, 2015 1:29 am
Location: Caldwell, Idaho

Re: Using a Brush as a Pattern

Post by NathanH »

Cool, thanks!
Post Reply