View Single Post
  #7  
Old 02-10-2016, 05:46 AM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
It looks like the scale of the model is off. Vizard's unit of measurement is the meter and the modeling software probably uses something else. If you look in Inspector, the bounding box of the model is around 5000 x 300 x 5000 meters. Try scaling the model down in Vizard:

Code:
import viz
viz.go()

sample = viz.addChild('sample.ive')
sample.setScale([0.001]*3)

import vizcam
vizcam.PivotNavigate(distance=10)
Reply With Quote