View Single Post
  #7  
Old 03-01-2005, 10:16 AM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
To find the intersect point you can also use the pick command.
Code:
info = viz.pick(1)
if info.intersected:
	print 'p1:',info.intersectPoint
Have you tried disabling lighting on the object?
Code:
object.disable(viz.LIGHTING)
This will prevent lighting calculations from being performed on the object, which will make it brighter.
Reply With Quote