Click or drag to resize

IMeshDeformationDefinition Interface

An interface providing access to a mesh deformation definition.

Namespace:  EMInvent.InventSim.COMServer
Assembly:  InventSim (in InventSim.exe) Version: 5.1.12.6+develop
Syntax
public interface IMeshDeformationDefinition

The IMeshDeformationDefinition type exposes the following members.

Properties
  NameDescription
Public propertyControlPointCount
Returns the number of control points in the mesh deformation definition.
Public propertyFixedPointCount
Returns the number of fixed control points in the mesh deformation definition.
Public propertyIsEnabled
Gets or sets the flag indicating whether the definition is enabled or not.
Public propertyName
Gets or sets the name of the mesh deformation definition.
Top
Methods
  NameDescription
Public methodAddControlPoint
Adds and returns a control point to the definition.
Public methodAddControlPointFast
Adds a control point to the definition. This method can only be used between BeginUpdate and EndUpdate calls.
Public methodAddFixedPoint
Adds and returns a fixed control point to the definition.
Public methodAddFixedPointFast
Adds a fixed control point to the definition. This method can only be used between BeginUpdate and EndUpdate calls.
Public methodBeginUpdate
Prevents the deformation from updating mesh parameter lists until the EndUpdate() method is called. This speeds up adding large amounts of parameters to the deformation definition.
Public methodEndUpdate
Resumes updating mesh parameter lists after it was suspended by the BeginUpdate() method.
Public methodGetControlPoint(Int32)
Returns a control point with the given index.
Public methodGetControlPoint(String)
Returns a control point with the given index.
Public methodGetFixedPoint(Int32)
Returns a fixed control point with the given index.
Public methodGetFixedPoint(String)
Returns a fixed control point with the given index.
Public methodIsEqual
Compares instances of mesh deformation definitions.
Public methodRemoveControlPoint
Removes the specified control point from the definition.
Public methodRemoveFixedPoint
Removes the specified fixed control point from the definition.
Top
See Also