| On this page | |
| Inheritance |
|
Overview ¶
-
Outside of the cook process, you can create your own hou.Geometry object and use methods and node verbs to manipulate the geometry.
-
When you get a
Geometryobject reference to the output of a geometry node (SOP), that reference is read-only (it represents the cached output of the node an so can’t be changed). You can read/inspect the geometry. To modify the geometry, you must make a writable copy first. -
If try to modify a
Geometryobject from SOPs outside of a Python SOP, Houdini will raise this error.
¶
Methods from hou.Error ¶
description()
→ str
Return a description of the class of exception. The description is not related to the exception instance.
exceptionTypeName()
→ str
Return the name of the exception type. Instances of different
subclasses of hou.Error will return different names. Instances of the
base class will return "Error".
You can also use str(e.__class__) to get the name of the subclass.
instanceMessage()
→ str
Return a message specific to the exception instance.