WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

Reply
 
Thread Tools Rating: Thread Rating: 2 votes, 5.00 average. Display Modes
  #1  
Old 10-16-2007, 02:28 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Can you please repost your code using the [code][/code] tags. It preserves the formatting and makes the code easier to understand.
Reply With Quote
  #2  
Old 10-17-2007, 01:28 AM
jaclyn.bill jaclyn.bill is offline
Member
 
Join Date: Oct 2007
Posts: 42
repost

sorry about that, here's the code again


Code:
#### x left and right stop position
##### d = distance
##### s = speed
#### t = time

#### m randomisation factors for time


import viz
import vizact
import vizmat
from random import random
import time
import math

viz.go()


gball = viz.add('footy.ac')




Start_Z = 100
Stop_Z = 10.0
s = 100.0
d = Start_Z-Stop_Z
t = d/s
Spin = 150.0
Angle = Spin*t


viz.move(0,0,0)## sets viewpoint at z meters away
#gball.setPosition (0,0,0) ####sets object position if do not want the Start_Z
viz.eyeheight(0)

#gball.translate(0,0,0)####sets object position
 
for x in [1, -1, 0]: #######will be -4 - 4 in .2 increments

	for m in [.5, -.5, -2]:
		


		moveForward=vizact.goto(x,-10,Stop_Z,.8+m,viz.TIME)
		moveStart=vizact.goto(0,0,Start_Z,0.01,viz.TIME)
		moveOut=vizact.goto(0,0,-1000,0.001,viz.TIME)
		wait1 = vizact.waittime(0.5)
		wait2 = vizact.waittime(5)
		motionseq=vizact.sequence(moveStart,wait1,moveForward,moveOut,wait2,moveStart,wait1)
		gball.add(motionseq)
Reply With Quote
  #3  
Old 10-18-2007, 08:19 AM
jaclyn.bill jaclyn.bill is offline
Member
 
Join Date: Oct 2007
Posts: 42
done

Done, I was being a bit stupid!
Reply With Quote
Reply

Thread Tools
Display Modes Rate This Thread
Rate This Thread:

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


All times are GMT -7. The time now is 02:33 AM.


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