WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

 
 
Thread Tools Rate Thread Display Modes
Prev Previous Post   Next Post Next
  #2  
Old 03-20-2017, 02:46 AM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
You could use the viz.pick command to get the point of intersection between the mouse and the object it is pointing at. Here's an example:

Code:
import viz
import vizact
import vizshape

viz.go()

dojo = viz.add('dojo.osgb')
sphere = vizshape.addSphere(radius=0.1,color=viz.GREEN)
sphere.disable(viz.PICKING)

def moveSphere():
	info = viz.pick(info=True)
	point = info.point
	sphere.setPosition(point)
	
vizact.onupdate(0,moveSphere)
Reply With Quote
 


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Find collision point of line and arbitrary object asdf Vizard 2 01-28-2013 10:04 AM


All times are GMT -7. The time now is 12:06 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Copyright 2002-2023 WorldViz LLC