View Single Post
  #1  
Old 10-20-2006, 07:00 AM
Joran Joran is offline
Member
 
Join Date: Jun 2006
Posts: 38
Send a message via Yahoo to Joran
Post clip with frustum problem

Hello,

I have a problem when using the Window.clip command in combination with Window.frustum. When I call the clip command after I have set the frustum, it will change the frustum settings. I think this is not the correct behavior. I think it should only update the near and far clipping plane and keep the other frustum values (update them so that they have the same effect).

Example script:

Code:
import viz
viz.go()

viz.add('tankmaze.wrl')

viz.MainWindow.frustum(0.0, 0.52632, -1.0, 0.39474, 1, 3000)

def onKeyDown(key):
	if key==' ':
		viz.MainWindow.clip(0.1,10000)

viz.callback(viz.KEYDOWN_EVENT,onKeyDown)
Greetings, Joran.
Reply With Quote