UnsafeNativeMethods.Vector4.TransformArray Method |
Language: |
Transforms a vector array by a given matrix.
Visual Basic Public Shared Function TransformArray( _
ByVal pOut As Vector4, _
ByVal outStride As Integer, _
ByVal pSource As Vector4, _
ByVal vectorStride As Integer, _
ByVal pSourceMatrix As Matrix, _
ByVal count As Integer _
) As Vector4C# public static Vector4 TransformArray(
Vector4 pOut,
int outStride,
Vector4 pSource,
int vectorStride,
Matrix pSourceMatrix,
int count
);C++ public:
static Vector4 TransformArray(
Vector4 pOut,
int outStride,
Vector4 pSource,
int vectorStride,
Matrix pSourceMatrix,
int count
);JScript public static function TransformArray(
pOut : Vector4,
outStride : int,
pSource : Vector4,
vectorStride : int,
pSourceMatrix : Matrix,
count : int
) : Vector4;
pOut Microsoft.DirectX.Vector4
A Vector4 structure that is the result of the method.outStride System.Int32
Stride between vectors in the output data stream.pSource Microsoft.DirectX.Vector4
Source Vector4 structure array.vectorStride System.Int32
Stride between vectors in the input data stream.pSourceMatrix Microsoft.DirectX.Matrix
Source Matrix structure.count System.Int32
Number of elements in the array.
Microsoft.DirectX.Vector4
A Vector4 structure that is the result of the method.
This method transforms the array pSource (x, y, 0, 1) by the matrix pSourceMatrix.
The return value for this method is the same value returned in the pOut parameter. This allows you to use the TransformArray method as a parameter for another method.
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