View Single Post
  #8  
Old 11-02-2008, 07:00 AM
znchb znchb is offline
Member
 
Join Date: Sep 2008
Posts: 21
Wink How to use 'time function' to control the appearance of balls

# I want to show balls on the screen one by one, not all the balls appear immediately.
# could you please help me to use the time function to control it. Appreciate.

import viz
viz.go()

OriginalBall = viz.add('ball.wrl')

for x in [0, 0.2, 0.4, 0.6, 0.8]: ## nested loop
for y in [0, 0.3, 0.6, 0.9]:
ball = OriginalBall.copy() ##use the copy() to save cpu resource
ball.translate(2+x, 2+y, 2)
ball.setScale(0.02,0.02,0.02)
Reply With Quote