#1
|
|||
|
|||
displaying random scenes etc
i am a beginner and i am terrible at programming and am quite confused.
1. is there any way, after creating multiple scenes, that one can randomly select which scene to display using vizact.choice or something else? 2. does vizact.choice randomly choose from a list and then stop when all the list items have been chosen, or does it continue to choose from the list? 3. also, is there a specific command that allows you to reflect an object's position about a specific axis? the online reference is not helping and any help would be much appreciated!!!!!!!! |
#2
|
|||
|
|||
You could randomly select a scene using the random module to generate a random integer and then set the scene to that number.
Code:
import viz import random viz.go() #add three objects to three different scenes duck = viz.add('duck.wrl',scene = 1) wheelbarrow = viz.add('wheelbarrow.ive',scene=2) wheelbarrow = viz.add('ball.wrl',scene=3) viz.MainView.move(0,-1,-7) def changeScene(): num = random.randint(1,3) viz.scene(num) vizact.ontimer(2, changeScene) Code:
object.getPosition() |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Making buttons appear in scenes | DBurks2818 | Vizard | 4 | 04-09-2009 03:25 PM |
Arranging Scenes in Correct Order | utepbereed | Vizard | 1 | 11-21-2008 10:19 AM |
Random head movements | VR_enthusiast | Vizard | 2 | 07-19-2006 12:59 PM |
Random Seeds | Vygreif | Vizard | 1 | 04-27-2006 10:21 PM |
switching between scenes | david | Vizard | 4 | 07-01-2003 07:05 PM |