SkinInformation.UpdateSkinnedMesh Method

Language:

Applies software skinning to target vertices that are based on the current matrices.

Definition

Visual Basic Public Sub UpdateSkinnedMesh( _
    ByVal boneTransforms() As Matrix, _
    ByVal boneInvTransforms() As Matrix, _
    ByVal sourceVertices As GraphicsStream, _
    ByVal destinationVertices As GraphicsStream _
)
C# public void UpdateSkinnedMesh(
    Matrix[] boneTransforms,
    Matrix[] boneInvTransforms,
    GraphicsStream sourceVertices,
    GraphicsStream destinationVertices
);
C++ public:
void UpdateSkinnedMesh(
    array<Matrix>^ boneTransforms,
    array<Matrix>^ boneInvTransforms,
    GraphicsStreamsourceVertices,
    GraphicsStreamdestinationVertices
);
JScript public function UpdateSkinnedMesh(
    boneTransforms : Matrix[],
    boneInvTransforms : Matrix[],
    sourceVertices : GraphicsStream,
    destinationVertices : GraphicsStream
);

Parameters

boneTransforms Microsoft.DirectX.Matrix[]
Array of Matrix objects that represent bone transforms.
boneInvTransforms Microsoft.DirectX.Matrix[]
Array of Matrix objects that represent the inverse transpose of the bone transform matrix.
sourceVertices Microsoft.DirectX.GraphicsStream
A GraphicsStream object that contains the source vertices.
destinationVertices Microsoft.DirectX.GraphicsStream
A GraphicsStream object that contains destination vertices.

Remarks

When used to skin vertices with two position elements, this method skins the second position element with the inverse of the bone instead of the bone itself.

Exceptions
InvalidCallException The method call is invalid. For example, a method's parameter might contain an invalid value.


Send comments about this topic to Microsoft. © Microsoft Corporation. All rights reserved.

Feedback? Please provide us with your comments on this topic.
For more help, visit the DirectX Developer Center