Difference between revisions of "Today"

From CodeStuff
Jump to: navigation, search
Line 1: Line 1:
 
<edcode>
 
<edcode>
 
 
var x;
 
var x;
 
var y;
 
var y;
Line 11: Line 10:
  
 
//Body
 
//Body
drawLine( x,y + 25,      x,y+100);
+
drawLine( x,y+25,      x,y+100);
  
 
//Shoulders
 
//Shoulders
drawLine( x-20,y + 35,  x+20,y+35);
+
drawLine( x-20,y+35,  x+20,y+35);
  
 
//Left Arm
 
//Left Arm
drawLine( x-20,y + 35,  x-50,y+70);
+
drawLine( x-20,y+35,  x-50,y+70);
  
 
//Right Arm
 
//Right Arm
drawLine( x+20,y + 35,  x+50,y+70);
+
drawLine( x+20,y+35,  x+50,y+70);
 +
 
 +
//Left Leg
 +
drawLine( x,y+100,      x-50,y+150);
 +
 
 +
//Right Leg
 +
drawLine( 50, 10,      50,200);
 +
 
  
 
</edcode>
 
</edcode>

Revision as of 22:17, 8 August 2012