CompositionClip.TransformMatrix Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The 3x2 transformation matrix to apply to the clip.
public:
property float3x2 TransformMatrix { float3x2 get(); void set(float3x2 value); };
float3x2 TransformMatrix();
void TransformMatrix(float3x2 value);
public Matrix3x2 TransformMatrix { get; set; }
var matrix3x2 = compositionClip.transformMatrix;
compositionClip.transformMatrix = matrix3x2;
Public Property TransformMatrix As Matrix3x2
Property Value
The transformation matrix to apply to the clip. By default, the TransformMatrix is set to:
[1 0
0 1
0 0]
Windows requirements
Device family |
Windows 10 Anniversary Edition (introduced in 10.0.14393.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduced in v3.0)
|