View Single Post
  #4  
Old 07-14-2014, 03:07 PM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
Try scaling the ball by a large value such as 1000. You can also add it to the ortho layer:

Code:
ball = viz.add('white_ball.wrl',parent=viz.ORTHO, scene=2)
ball.setPosition([300,300,1])
ball.setScale([100]*3)
Reply With Quote