View Single Post
  #2  
Old 10-04-2004, 09:51 AM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Hi,

Do you just want to make a copy of an existing object? If this is the case then you can use the either the clone or copy command. Example:
Code:
ball = viz.add('ball.wrl')
ball2 = ball.clone()
ball3 = ball.clone()
Let me know if I misunderstood your question.
Reply With Quote