A3DObject
Overview
A3DObject is a class in Aspose.3d for Python.
Inherits from: INamedObject.
A3DObject provides a mutable name via the name() getter and name(value) setter, allowing developers to identify objects in a scene.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
name | str | Read | Holds the object’s identifier string |
properties | PropertyCollection | Read | Provides access to the object’s PropertyCollection of custom properties |
Methods
| Signature | Description |
|---|---|
__init__(name: str) | |
find_property(property_name: str) | Searches for a property by name and returns it if present |
get_property(property: str) | Retrieves the value of the specified property |
set_property(property: str, value) | Assigns the given value to the specified property, creating it if needed |
remove_property(property) | Deletes the specified property from the object |