OrthoSphere.py

from pygeo import *

v=display(scale=70)

p1 = FreePoint(-14.,-9,-3,color=WHITE)
p2 = FreePoint(12,-15,4,color=WHITE)

sphere=Sphere(p1,p2,color=BLUE,style=FILL)

p3 = FreePoint(16,16,4,pointsize=1.5)

OrthoSphere(sphere,p3,color=RED)

v.pickloop()