WorldViz User Forum  

Go Back   WorldViz User Forum > Search Forums

Showing results 301 to 325 of 500
Search took 0.03 seconds; generated 65 minute(s) ago.
Search: Posts Made By: Jeff
Forum: Vizard 02-23-2017, 08:16 PM
Replies: 2
Views: 23,661
Posted By Jeff
It's not clear to me what you are trying to do....

It's not clear to me what you are trying to do. It would be best if you could post an example that is simplified as much as possible, can be run directly, and reproduces the issue.
Forum: Vizard 02-23-2017, 08:07 PM
Replies: 6
Views: 27,550
Posted By Jeff
For help with code issues please follow the...

For help with code issues please follow the guidelines for posting Vizard code (http://forum.worldviz.com/faq.php?faq=vb3_reading_posting#faq_faq_vizard_code).
Forum: Vizard 02-21-2017, 11:22 PM
Replies: 6
Views: 27,550
Posted By Jeff
Where are you adding a model and assigning it to...

Where are you adding a model and assigning it to the variable name logoss1? In the code posted it's assigned to None.
Forum: Vizard 02-21-2017, 10:46 PM
Replies: 5
Views: 29,093
Posted By Jeff
Does the example server/client scripts posted...

Does the example server/client scripts posted here (http://forum.worldviz.com/showpost.php?p=3949&postcount=11) work for you? Also, try using the server machine name if you are using the server ip...
Forum: Vizard 02-21-2017, 10:28 PM
Replies: 3
Views: 25,460
Posted By Jeff
The window.pick...

The window.pick (http://docs.worldviz.com/vizard/#commands/window/pick.htm) command performs a pick operation on a sub-window.

Also, perhaps the window.isCulled...
Forum: Vizard 02-21-2017, 05:07 PM
Replies: 4
Views: 57,113
Posted By Jeff
We have not used PyCharm so I don't have any...

We have not used PyCharm so I don't have any suggestions for getting the debugger to work there. What about opening up the script in the Vizard IDE at times when you need a debugger?
Forum: Vizard 02-16-2017, 11:31 PM
Replies: 2
Views: 24,764
Posted By Jeff
The resources folder in the Vizard installation...

The resources folder in the Vizard installation contains all the osgb models included with Vizard. From within Vizard, press F12 to open the installation folder.
Forum: Vizard 02-15-2017, 06:25 PM
Replies: 4
Views: 64,101
Posted By Jeff
The getPosition() command returns an [x,y,z] list...

The getPosition() command returns an [x,y,z] list that you access like other Python lists:

pos = tracker.getPosition()
x = pos[0]
y = pos[1]
z = pos[2]
Forum: Vizard 02-15-2017, 01:44 PM
Replies: 5
Views: 29,093
Posted By Jeff
Try disabling any firewalls if they are enabled.

Try disabling any firewalls if they are enabled.
Forum: Vizard 02-15-2017, 01:40 PM
Replies: 2
Views: 24,932
Posted By Jeff
You can save out objects to the osg format from...

You can save out objects to the osg format from Vizard for loading back into Vizard. But they will not load into other modeling software.
Forum: Vizard 02-15-2017, 01:23 PM
Replies: 1
Views: 22,970
Posted By Jeff
There have not been any updates that would change...

There have not been any updates that would change model orientation between Vizard 5.6 and 5.7. Can you provide example code that reproduces the issue?
Forum: Vizard 02-13-2017, 05:08 PM
Replies: 2
Views: 21,583
Posted By Jeff
There is no built-in support for this in...

There is no built-in support for this in Inspector.
Forum: Vizard 02-10-2017, 03:44 PM
Replies: 3
Views: 25,249
Posted By Jeff
The following works for me using the male_2...

The following works for me using the male_2 avatar from vizconnect:

avatar = vizconnect.getAvatar('male_2').getRaw()
avatar.visible(0,'male_head.crfx')
Forum: Vizard 02-06-2017, 03:45 PM
Replies: 7
Views: 27,554
Posted By Jeff
You can apply a scale operator on the tracker...

You can apply a scale operator on the tracker link:

trackerLink = vizconnect.getTracker('head_tracker').getLink()
trackerLink.scaleEuler([2,1,1],viz.LINK_ORI_OP)
Forum: Vizard 02-02-2017, 05:12 PM
Replies: 5
Views: 26,959
Posted By Jeff
The node.setCenter...

The node.setCenter (http://docs.worldviz.com/vizard/#commands/node3d/setCenter.htm) command will change the object's center of rotation. I'm not sure but it might also help in this case.
Forum: Vizard 02-02-2017, 11:25 AM
Replies: 4
Views: 40,050
Posted By Jeff
I'll submit this request to our developers.

I'll submit this request to our developers.
Forum: Vizard 02-01-2017, 08:16 PM
Replies: 7
Views: 72,979
Posted By Jeff
I'm not sure how you would get the treadmill data...

I'm not sure how you would get the treadmill data in Vizard. Does the manufacturer provide a Python API? If so, you could use that to get the data into Vizard. Attached is an example that updates a...
Forum: Vizard 02-01-2017, 03:27 PM
Replies: 4
Views: 64,101
Posted By Jeff
There's not a built-in function to do this. You...

There's not a built-in function to do this. You could try using a proximity sensor to detect when the user is near the crate. Then get the position of the foot tracker and check to see if it's above...
Forum: Vizard 01-26-2017, 04:11 PM
Replies: 2
Views: 23,405
Posted By Jeff
There is no built-in support to take data from an...

There is no built-in support to take data from an animated fbx or dae and animate an avatar in Vizard. Through vizconnect you can animate an avatar using tracking data. See the vizconnect tutorials...
Forum: Vizard 01-25-2017, 05:18 PM
Replies: 7
Views: 72,979
Posted By Jeff
Use vizconnect to configure the viewpoint to move...

Use vizconnect to configure the viewpoint to move with optotrack data. Add a group tracker above the headtracker in the vizconnect scenegraph and update the group's position in the script that...
Forum: Vizard 01-25-2017, 05:10 PM
Replies: 2
Views: 42,821
Posted By Jeff
If you're using the default mouse navigation to...

If you're using the default mouse navigation to control the viewpoint, the starting position is [0,1.8,0]. If the viewpoint is controlled by tracking data and there are no other offsets applied, the...
Forum: Vizard 01-25-2017, 05:08 PM
Replies: 3
Views: 44,471
Posted By Jeff
Please post sample Vizard code...

Please post sample Vizard code (http://forum.worldviz.com/faq.php?faq=vb3_reading_posting#faq_faq_vizard_code) that shows the issue.
Forum: Vizard 01-23-2017, 01:35 PM
Replies: 1
Views: 20,355
Posted By Jeff
If your display is treated by windows as a single...

If your display is treated by windows as a single desktop it maybe possible to get this working with standard Vizard commands. Otherwise it would likely require the development of a custom plug-in.
Forum: Vizard 01-23-2017, 01:26 PM
Replies: 3
Views: 44,471
Posted By Jeff
1) Are these two separate model files or...

1) Are these two separate model files or sub-parts of the same model? Can you post an example that shows this?

2) Boxes added through the vizshape (http://docs.worldviz.com/vizard/#Vizshape.htm)...
Forum: Vizard 01-23-2017, 01:18 PM
Replies: 7
Views: 33,967
Posted By Jeff
Yes, the following code will apply that color to...

Yes, the following code will apply that color to a box:

import viz
import vizact
viz.go()

import vizshape
box = vizshape.addBox(pos=[0,1.8,4])

vizact.onkeydown(' ',box.color,[0.5,0.5,0.5])
Showing results 301 to 325 of 500

 
Forum Jump

All times are GMT -7. The time now is 03:55 PM.


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