#!/usr/bin/python

from piscript.PiModule import *

init3d("sphere2", 100,100)
set_eye([0,0,10,1])

beginpage()
center()
scale(40)
c = sphere([1, 0, 0], 4)
paint(c)
endpage()

flush()

