Playing at the end

This commit is contained in:
2019-09-22 18:56:04 +01:00
parent e4efc148ea
commit 8039da3718
3 changed files with 48 additions and 5 deletions

View File

@ -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')