WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

 
 
Thread Tools Rating: Thread Rating: 5 votes, 5.00 average. Display Modes
Prev Previous Post   Next Post Next
  #4  
Old 01-18-2010, 05:34 PM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
If you want to send messages to another machine running Vizard and then display them on that machine or do something else like update a text file take a look at the networking tutorials in the Vizard docs.

If you want to do something like your original question then take a look at the following example that sets up two windows. You will need display set to horizontal span to get each window going to a different output.
Code:
import viz
viz.go(viz.FULLSCREEN)

#set up window for emagin with quad buffered stereo
#and correct FOV
win = viz.MainWindow
win.fov(24,1.333)
win.stereo(viz.QUAD_BUFFER)

#add view and window for monitor and set view of monitor
#to scene 2
view2 = viz.addView()
view2.setScene(2)
win2 = viz.addWindow()
win2.setView(view2)

#link view2 to MainView
viz.link(viz.MainView, view2)
view2.eyeheight(0)

#size and place each window
win.setSize(0.5,1.0)
win.setPosition(0,1)
win2.setSize(0.5,1.0)
win2.setPosition(0.5,1)

#add gallery to both scenes
gallery = viz.add('gallery.ive')
gallery2 = viz.add('gallery.ive',scene=2)

#put some text on monitor but not in HMD
text = viz.addText('TEXT',parent=viz.SCREEN,scene=2)
text.setPosition(0.8,0.8)
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
Presents 3D Movies and 3D Images by using Vizard Moh200jo Vizard 5 12-07-2009 10:46 AM
viz.Screen Images overlap and Interface Button jaylocco Vizard 1 08-28-2009 04:18 PM
Vizard looking for images in wrong folder tacbob Vizard 3 10-19-2006 10:24 AM
Looping over large number of images MrSmiley009 Vizard 3 02-28-2006 05:08 PM
generating images for panoramas using cube maps bailenson Vizard 5 09-08-2004 09:32 PM


All times are GMT -7. The time now is 07:41 PM.


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