WorldViz User Forum  

Go Back   WorldViz User Forum > Search Forums

Showing results 1 to 25 of 77
Search took 0.01 seconds.
Search: Posts Made By: Elittdogg
Forum: Vizard 09-15-2009, 06:28 AM
Replies: 1
Views: 11,776
Posted By Elittdogg
Ok...so the global error I was getting is fixed. ...

Ok...so the global error I was getting is fixed. At the beginning of my script when I defined data1 I misspelled it and that's why the program wasn't recognizing it.

I managed to fix the offset...
Forum: Vizard 09-14-2009, 08:54 AM
Replies: 1
Views: 11,776
Posted By Elittdogg
Offset Problem

I'm was playing around with my program and I realized that when the bird (i'm using a flock of birds) is at rest, Vizard is registering it as if it were pitching x degrees.

So I was wondering if I...
Forum: Vizard 09-08-2009, 12:02 PM
Replies: 5
Views: 11,230
Posted By Elittdogg
Also, the way I have the hotspot set up is as a...

Also, the way I have the hotspot set up is as a variable within a class:
self.hotspotTolerance = 1

So what I "want" to happen is that anytime both my current yaw AND pitch are within 1 degree of...
Forum: Vizard 09-08-2009, 11:50 AM
Replies: 5
Views: 11,230
Posted By Elittdogg
Unhappy I think I might have come across the problem...I...

I think I might have come across the problem...I need to be able to calculate what yaw and pitch I should have so that the red dot is on top of the target. In order to do that I have to calculate...
Forum: Vizard 09-08-2009, 06:28 AM
Replies: 5
Views: 11,230
Posted By Elittdogg
Ok...well...maybe my problem is in how the...

Ok...well...maybe my problem is in how the program is calculating some of the bearing/yaw/pitch/distance stuff.

I'm having people navigate the red dot from point A-->B-->C-->D-->etc. The way I...
Forum: Vizard 09-04-2009, 08:03 AM
Replies: 5
Views: 11,230
Posted By Elittdogg
Since the objects are in some x,y,z location in...

Since the objects are in some x,y,z location in the world and I'm remaining stationary and simply changing my gaze/orientation, I needed a way to determine wether or not my viewpoint was "on top of"...
Forum: Vizard 09-04-2009, 07:45 AM
Replies: 5
Views: 11,230
Posted By Elittdogg
Laser Pointer Question (Again)

I'm having a new problem. My previous laser pointer worked with this code

RedDot = viz.add(viz.TEXT3D, '.', viz.SCREEN)
RedDot.translate(0.5, 0.5)
RedDot.alignment(viz.TEXT_CENTER_CENTER)...
Forum: Vizard 08-29-2008, 08:40 AM
Replies: 1
Views: 9,739
Posted By Elittdogg
String within a string problem?

I'm sure this is very basic, but for whatever reason I'm unable to wrap my head around it. I'm using python based code only.


x=raw_input("Enter something for x or enter 'quit' to exit the...
Forum: Vizard 04-11-2008, 11:40 AM
Replies: 5
Views: 19,976
Posted By Elittdogg
Thank you for the help. I really appreciate it.

Thank you for the help. I really appreciate it.
Forum: Vizard 04-10-2008, 01:26 PM
Replies: 5
Views: 19,976
Posted By Elittdogg
Or would it be better to write a 3rd flag with...

Or would it be better to write a 3rd flag with the same button press that reports the time. So i'd have one write which letter and another the time both would work while pressing "f"?
Forum: Vizard 04-10-2008, 01:17 PM
Replies: 5
Views: 19,976
Posted By Elittdogg
Is there a way to get it to say what I want (even...

Is there a way to get it to say what I want (even though it's 3 arguments?) Can I make it so that the write function can handle 3 arguments?

And is there a way to include WriteFlag2 to ONLY write...
Forum: Vizard 04-10-2008, 01:02 PM
Replies: 5
Views: 19,976
Posted By Elittdogg
Flagging the Data

So I'm collecting position data through a flock of birds and writing the data to text files on the computer. I have:


flock1 = viz.add('flockofbirds.dls')
flock2 = viz.add('flockofbirds.dls') ...
Forum: Vizard 04-10-2008, 09:48 AM
Replies: 8
Views: 12,081
Posted By Elittdogg
Nevermind. I realized I was being an idiot. I...

Nevermind. I realized I was being an idiot. I understand your confusion because I didn't know what I was talking about. Thanks for the help.
Forum: Vizard 04-10-2008, 06:18 AM
Replies: 8
Views: 12,081
Posted By Elittdogg
Yes that is correct. They will be wearing HMDs. ...

Yes that is correct. They will be wearing HMDs. Here's where I'm getting tripped up (and maybe this is irrelevant):

RedDot = viz.add(viz.TEXT3D, '.', viz.SCREEN)
RedDot.translate(0.5, 0.57, 0)...
Forum: Vizard 04-09-2008, 02:08 PM
Replies: 8
Views: 12,081
Posted By Elittdogg
I'm trying to mimic a real setting where a laser...

I'm trying to mimic a real setting where a laser pointer would be fixed on top of a person's head and therefore the "height" or the "coordinates" of the laser would chance from participant to...
Forum: Vizard 04-09-2008, 09:56 AM
Replies: 8
Views: 12,081
Posted By Elittdogg
Thank you. It runs fine so I have been ignoring...

Thank you. It runs fine so I have been ignoring it. But my original question still stands...how can I get it so that the laser pointer is set to the height of the participant???
Forum: Vizard 04-08-2008, 02:23 PM
Replies: 8
Views: 12,081
Posted By Elittdogg
Also, do you know why this line: Meters =...

Also, do you know why this line:

Meters = (Height * (1.0/39.37))

keeps getting highlighted yellow without giving me an error message every time I run the script? Is something wrong with it?
Forum: Vizard 04-08-2008, 02:19 PM
Replies: 8
Views: 12,081
Posted By Elittdogg
Laser Pointer Updated

import viz
viz.go()

Height = viz.input('Height?')
print "Participant's height is", Height, "inches."

Meters = (Height * (1.0/39.37))
print "Participant's height is", Meters, "meters."
...
Forum: Vizard 04-08-2008, 02:15 PM
Replies: 4
Views: 10,649
Posted By Elittdogg
thank you for the help. I got it figured out now

thank you for the help. I got it figured out now
Forum: Vizard 04-03-2008, 10:21 AM
Replies: 4
Views: 10,649
Posted By Elittdogg
Another point of interest: I tried just...

Another point of interest:

I tried just creating a blank script with the letters and here's what I have:

import viz
viz.go()

A = viz.add(viz.TEXT3D,'A', viz.RELATIVE_LOCAL)...
Forum: Vizard 04-03-2008, 08:33 AM
Replies: 4
Views: 10,649
Posted By Elittdogg
I think I might have figure out to do the text...

I think I might have figure out to do the text thing but now when I try to add a second letter it won't even show up
so I have:

A = viz.add(viz.TEXT3D,'A', viz.RELATIVE_LOCAL)...
Forum: Vizard 04-03-2008, 07:58 AM
Replies: 4
Views: 10,649
Posted By Elittdogg
Placing Text onto another object???

I want to know how to place some text (in this case a single letter) "on" a specific place in another object in the world. In other words, let's say I have a .wrl file with some model in my world. ...
Forum: Vizard 04-03-2008, 07:51 AM
Replies: 2
Views: 15,201
Posted By Elittdogg
I don't have V3, but I did manage to get it to...

I don't have V3, but I did manage to get it to work.

Thanks for the help
Forum: Vizard 03-26-2008, 02:08 PM
Replies: 2
Views: 15,201
Posted By Elittdogg
Unhappy Exporting from Maya in Vizard

I'm trying to export a 3D model of a room from Maya into Vizard and have tried a number of different file formats and none of them seem to work. I even tried downloading the Cal3D Exporter for Maya...
Forum: Vizard 03-25-2008, 10:19 AM
Replies: 1
Views: 14,587
Posted By Elittdogg
Question "Laser Pointer"

I need to mimic a laser pointer attached to the head that will move with the viewpoint. So let's say a person were tracing through a maze with their head and had to reach certain landmarks; I need...
Showing results 1 to 25 of 77

 
Forum Jump

All times are GMT -7. The time now is 04:42 PM.


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