On this page | |
Inheritence |
|
概要
-
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
Geometry
object 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
Geometry
object from SOPs outside of a Python SOP, Houdini will raise this error.
Methods from hou.Error
description()
→ str
例外のクラスの説明を返します。この説明は、例外インスタンスには関係ありません。
exceptionTypeName()
→ str
例外タイプの名前を返します。
異なるサブクラスのhou.Errorのインスタンスは、異なる名前を返します。
基本クラスのインスタンスは、"Error"
を返します。
str(e.__class__)
を使用することで、そのサブクラスの名前を取得することもできます。
instanceMessage()
→ str
例外インスタンス固有のメッセージを返します。