Edit

ExpressionValues.Constant.CreateConstantVector3 Method

Definition

Overloads

CreateConstantVector3(String)

Creates a named constant parameter of type Vector3.

CreateConstantVector3(String, Vector3)

Creates a named constant parameter of type Vector3, initialized with the specified value.

CreateConstantVector3(String)

Creates a named constant parameter of type Vector3.

public static CommunityToolkit.WinUI.Animations.Expressions.Vector3Node CreateConstantVector3(string paramName);
static member CreateConstantVector3 : string -> CommunityToolkit.WinUI.Animations.Expressions.Vector3Node
Public Shared Function CreateConstantVector3 (paramName As String) As Vector3Node

Parameters

paramName
String

The name that will be used to refer to the parameter at a later time.

Returns

Vector3Node.

Applies to

CreateConstantVector3(String, Vector3)

Creates a named constant parameter of type Vector3, initialized with the specified value.

public static CommunityToolkit.WinUI.Animations.Expressions.Vector3Node CreateConstantVector3(string paramName, System.Numerics.Vector3 value);
static member CreateConstantVector3 : string * System.Numerics.Vector3 -> CommunityToolkit.WinUI.Animations.Expressions.Vector3Node
Public Shared Function CreateConstantVector3 (paramName As String, value As Vector3) As Vector3Node

Parameters

paramName
String

The name that will be used to refer to the parameter at a later time.

value
Vector3

The value of the parameter.

Returns

Vector3Node.

Applies to