Vector2.Round Method

Definition

Overloads

Name Description
Round(Vector2)

Rounds each element in a vector to the nearest integer using the default rounding mode (ToEven).

Round(Vector2, MidpointRounding)

Rounds each element in a vector to the nearest integer using the specified rounding mode.

Round(Vector2)

Source:
Vector2.cs

Rounds each element in a vector to the nearest integer using the default rounding mode (ToEven).

public:
 static System::Numerics::Vector2 Round(System::Numerics::Vector2 vector);
public static System.Numerics.Vector2 Round(System.Numerics.Vector2 vector);
static member Round : System.Numerics.Vector2 -> System.Numerics.Vector2
Public Shared Function Round (vector As Vector2) As Vector2

Parameters

vector
Vector2

The vector to round.

Returns

The result of rounding each element in vector to the nearest integer using the default rounding mode.

Applies to

Round(Vector2, MidpointRounding)

Source:
Vector2.cs

Rounds each element in a vector to the nearest integer using the specified rounding mode.

public:
 static System::Numerics::Vector2 Round(System::Numerics::Vector2 vector, MidpointRounding mode);
public static System.Numerics.Vector2 Round(System.Numerics.Vector2 vector, MidpointRounding mode);
static member Round : System.Numerics.Vector2 * MidpointRounding -> System.Numerics.Vector2
Public Shared Function Round (vector As Vector2, mode As MidpointRounding) As Vector2

Parameters

vector
Vector2

The vector to round.

mode
MidpointRounding

The mode under which vector should be rounded.

Returns

The result of rounding each element in vector to the nearest integer using mode.

Applies to