Returns a pointer to the object's Geometry at the specified time.
Note: Since Python does not support input parameters on properties, this property will
fail in Python. Use the Python-compliant Primitive.GetGeometry2
method instead.
// get accessor Geometry Primitive.get_Geometry( Object ); |
Parameter | Type | Description |
---|---|---|
Time | Double |
Time (in frames) at which to get property Default Value: Current time in frames |
set oObject = Application.ActiveProject.ActiveScene.Root.AddGeometry("Sphere","MeshSurface") dblFrame=1.0 ' Get geometry at frame=1.0 set oGeometry = oObject.ActivePrimitive.Geometry(dblFrame) |