geometric_scaling property
geometric_scaling property
Gets or sets the geometric scaling. Geometric transformation only affects the entities attached and leave the child nodes unaffected. It will be merged as local transformation when you export the geometric transformation to file types that does not support it.
Example
from aspose.threed import Node
from aspose.threed.utilities import Vector3
node = Node()
node.transform.geometric_scaling = Vector3(2, 2, 2)
Definition:
@property
def geometric_scaling(self):
...
@geometric_scaling.setter
def geometric_scaling(self, value):
...
See Also
- module
aspose.threed
- class
Transform
- class
Vector3