![]() |
|
#2
|
|||
|
|||
Hi,
The current VRML loader doesn't support all VRML 2.0 features, and Text is one of them. You can add a text object manually though: text = viz.add(viz.TEXT3D,'View 1') text.color(1.0,0.2,0.2) To dynamically change the text message: text.message('new value') Plus all the transformation operations work on the text object, such as translation, rotation, and scale. -- Farshid |
|
|