#VRML V1.0 ascii Separator { #set up the camera PerspectiveCamera { position 0 0 5 heightAngle 1.2 } #light the scene DirectionalLight{ direction 0 0 -1 } #Draw 3 spheres side-by-side #The sphere in the middle is half the #size of the ones on the end. # Draw First Sphere is in the Center Sphere { radius 0.5 } Translation { # move to the left by 1 translation -4 0 0 } # Draw Second Sphere usng above translation Sphere { radius 1.0 } Translation { #now move right by 2 # Which ends up being to the right of center by 1 translation 8 0 0 } #Draw the 3rd Sphere Sphere { radius 1.0 } }