Primitive.Geometry

説明

指定された時間のオブジェクトの Geometry へのポインタを戻します。

注:Python ではプロパティ上の入力パラメータがサポートされていないので、このプロパティは失敗します。代わりに Python 互換の Primitive.GetGeometry2 メソッドを使用してください。

C#構文

// get accessor

Geometry Primitive.get_Geometry( Object );

パラメータ

パラメータ タイプ 説明
Time Double プロパティを取得する時間(フレーム)

デフォルト値:現在の時間(フレーム)

VBScript の例

set oObject = Application.ActiveProject.ActiveScene.Root.AddGeometry("Sphere","MeshSurface")

dblFrame=1.0

' Get geometry at frame=1.0

set oGeometry = oObject.ActivePrimitive.Geometry(dblFrame)

関連項目

Primitive.GetGeometry2