GMU:Bots 'n' Plots/smin kim: Difference between revisions

From Medien Wiki
Line 66: Line 66:
==== Animation Dog Bot ====
==== Animation Dog Bot ====


[[File:My_robot_1200.gif|200x200px|left]]
[[File:Dog.gif|200x200px|left]]

Revision as of 22:48, 27 April 2015

Hello world!

My name is Smin Kim. I'm studying in Media art and design Bauhaus University Weimar Master course. live and work in Weimar. Nice to see you here!

SNS

lovely Bot

SminKimRobot2.png



Dog Bot Code


"""

My Dog Bot

"""

# Drawing style
  size(400,400)
  background("#FF8000")
  fill(255,0,100,90)
  strokeWeight(10)
  rect(150,120,100,200)


# Nose
  ellipse(200,300,60,60)

# Eears
  pushMatrix()
  translate(250,120)
  rotate(-TWO_PI /10)
  rect(0,0,20,150)
  popMatrix()

  pushMatrix()
  translate(150,120)
  scale(-1,1)
  rotate(-TWO_PI /8)
  rect(0,0,20,150)
  popMatrix()

# Eyes
  pushMatrix()
  translate(275,120)
  scale(-1,1)
  ellipse(50,70,10,10)
  ellipse(100,70,10,10)
  strokeWeight(5)
  ellipse(120,70,30,30)
  ellipse(30,70,30,30)
  popMatrix()

# saveFrame("sminKimRobot2.png")


Animation Dog Bot

Dog.gif