More development during the event

This commit is contained in:
2019-09-22 15:11:36 +01:00
parent 698f07c6ff
commit e4efc148ea
3 changed files with 32 additions and 0 deletions

View File

@ -151,6 +151,13 @@ with Screen('main', width=1920, height=1080) as screen:
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')
with Group('tunnel', x=screen.width/2, y=screen.height/2, fader=0, composite='lighter'):
radius = FirstTunnelRadius
for j in range(TunnelLoops):
with Path(tags='loop', lineWidth=radius / 10):
Ellipse(0, 0, radius, radius)
StrokePath()
radius *= TunnelLoopMultiplier
with Path(id='mask', pattern='mask_pattern', fader=0):
Rect(0, 0, container.width, container.height)
FillPath()