Breyta

Deila með


Vector3.LessThanAll(Vector3, Vector3) Method

Definition

Compares two vectors to determine if all elements are less.

public:
 static bool LessThanAll(System::Numerics::Vector3 left, System::Numerics::Vector3 right);
public static bool LessThanAll(System.Numerics.Vector3 left, System.Numerics.Vector3 right);
static member LessThanAll : System.Numerics.Vector3 * System.Numerics.Vector3 -> bool
Public Shared Function LessThanAll (left As Vector3, right As Vector3) As Boolean

Parameters

left
Vector3

The vector to compare with right.

right
Vector3

The vector to compare with left.

Returns

true if all elements in left were less than the corresponding element in right.

Applies to