ExpressionValues.Constant.CreateConstantMatrix4x4 Method
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.
Overloads
| CreateConstantMatrix4x4(String) |
Creates a named constant parameter of type Matrix4x4. |
| CreateConstantMatrix4x4(String, Matrix4x4) |
Creates a named constant parameter of type Matrix4x4, initialized with the specified value. |
CreateConstantMatrix4x4(String)
Creates a named constant parameter of type Matrix4x4.
public static CommunityToolkit.WinUI.Animations.Expressions.Matrix4x4Node CreateConstantMatrix4x4(string paramName);
static member CreateConstantMatrix4x4 : string -> CommunityToolkit.WinUI.Animations.Expressions.Matrix4x4Node
Public Shared Function CreateConstantMatrix4x4 (paramName As String) As Matrix4x4Node
Parameters
- paramName
- String
The name that will be used to refer to the parameter at a later time.
Returns
Matrix4x4Node.
Applies to
CreateConstantMatrix4x4(String, Matrix4x4)
Creates a named constant parameter of type Matrix4x4, initialized with the specified value.
public static CommunityToolkit.WinUI.Animations.Expressions.Matrix4x4Node CreateConstantMatrix4x4(string paramName, System.Numerics.Matrix4x4 value);
static member CreateConstantMatrix4x4 : string * System.Numerics.Matrix4x4 -> CommunityToolkit.WinUI.Animations.Expressions.Matrix4x4Node
Public Shared Function CreateConstantMatrix4x4 (paramName As String, value As Matrix4x4) As Matrix4x4Node
Parameters
- paramName
- String
The name that will be used to refer to the parameter at a later time.
- value
- Matrix4x4
The value of the parameter.
Returns
Matrix4x4Node.