//Homework 3 //Aileen Craig //Section A //aacraig@andrew.cmu.edu size (400, 400, P3D); println("the initial I will represent in 3D is A"); lights(); noStroke(); background(#000000); pushMatrix(); translate(width*.35, height*.6, 50); fill(#EA0255,175); sphere(20); popMatrix(); pushMatrix(); translate(width*.34, height*.55, -20); fill(#FA7735,200); sphere(20); popMatrix(); pushMatrix(); translate(width*.36, height*.5, -25); fill(#F6FA21, 150); sphere(20); popMatrix(); pushMatrix(); translate(width*.38, height*.45, -30); fill(#41FA35, 180); sphere(20); popMatrix(); pushMatrix(); translate(width*.43, height*.4, -40); fill(#382CF0); sphere(20); popMatrix(); pushMatrix(); translate(width*.5, height*.45, -30); fill(#41FA35, 180); sphere(20); popMatrix(); pushMatrix(); translate(width*.52, height*.5, -25); fill(#F6FA21,150); sphere(20); popMatrix(); pushMatrix(); translate(width*.54, height*.55, -20); fill(#FA7735,175); sphere(20); popMatrix(); pushMatrix(); translate(width*.55, height*.6, 50); fill(#EA0255,200); sphere(20); popMatrix(); pushMatrix(); translate(width*.44, height*.54, -25); fill(#CC27D8, 200); box(40,20,50); popMatrix();