Mark McGranaghan 8d31ec147c move to vendor
2012-11-17 08:21:42 -08:00

14 lines
216 B
POVRay

#declare Index1 = 0;
#while(Index1 <= 9)
#declare Index2 = 0;
#while(Index2 <= 19)
sphere { <Index1, Index2, 0>, .5 }
#declare Index2 = Index2 + 1;
#end
#declare Index1 = Index1 + 1;
#end