GMU:Bots 'n' Plots/Angelica Sohn

From Medien Wiki
< GMU:Bots 'n' Plots
Revision as of 14:22, 29 April 2015 by Loqu3678 (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Twitter: @ange_sohn Personal links: http://vimeo.com/angelicasohn

My Works

Angelica's robot

Animated Bot


"""

Animated Bot

"""


rain = 24

def setup():
    size(400,400)
    background(100,100,100)
    noStroke()

def draw():

    windshield = 30+10 * sin(frameCount * 2)
    
    #windshield
    fill(0)
    rect(50,100,300,200)
    
    #windshield wiper 1
    fill(255)
    rect(150,180,windshield,100)
    
    fill(255)
    rect(250,180,windshield,100)
    
    rain = 20 + 4 * sin(frameCount * 0.1)

    #rain 
    fill(0,255,0)
    ellipse(random(400),random(400),rain,rain)
    
    #rain2
#     fill(0,255,0)
#     ellipse(100,200,rain,rain)
    
    saveFrame('animatedbot_###.png')
    #saveFrame('animatedbot_###.gif')
    
def mouseClicked():
    background(100,100,100)