More development during the event
This commit is contained in:
7
setup.py
7
setup.py
@ -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()
|
||||
|
Reference in New Issue
Block a user