#!/usr/bin/python from piscript.PiModule import * init3d("sphere", 50, 50) set_eye([0,0,10,1]) beginpage() center() scale(20) c = sphere([1, 0, 0], 2) paint(c) endpage() flush()