Edit

ExpressionValues.Constant.CreateConstantMatrix4x4 Method

Definition

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.

Applies to