root_node property
root_node property
Gets the root node of the scene.
Example
The following code shows how to create a node with Box entity attached to the root node.
from aspose.threed import Scene
from aspose.threed.entities import Box
scene = Scene()
scene.root_node.create_child_node(Box())
scene.save("box.stl")
Definition:
@property
def root_node(self):
...
See Also
- module
aspose.threed
- class
Node
- class
Scene