View Single Post
  #2  
Old 06-17-2008, 10:38 AM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
If you want to apply your own texture to the existing ground model then you can use the following code:
Code:
tex = viz.add('mytexture.jpg')
ground = viz.add('tut_ground.wrl')
ground.texture(tex)
Or you can create your own ground model using a 3D editor and import it directly into Vizard.
Reply With Quote