Playing at the end
This commit is contained in:
9
setup.py
9
setup.py
@ -148,6 +148,15 @@ with Screen('main', width=1920, height=1080) as screen:
|
||||
with Path(tags='outline'):
|
||||
Star(10)
|
||||
StrokePath()
|
||||
with Group('bubbles', composite='lighter', x=screen.width / 2, y=screen.height / 2, fader=0):
|
||||
for j in range(100):
|
||||
with Group(tags='bubble'):
|
||||
with Path(tags='inside'):
|
||||
Ellipse(0, 0, 10, 10)
|
||||
FillPath()
|
||||
with Path(tags='outside'):
|
||||
Ellipse(0, 0, 10, 10)
|
||||
StrokePath()
|
||||
with Group('spirals', x=screen.width/2, y=screen.height/2, color='white', lineWidth=2, fader=0, composite='lighter'):
|
||||
for j in range(Spirals):
|
||||
Spiral(rotate=j/Spirals, count=j, tags='spiral')
|
||||
|
Reference in New Issue
Block a user