Edit

Share via


Vector3.Round Method

Definition

Overloads

Name Description
Round(Vector3)

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

Round(Vector3, MidpointRounding)

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

Round(Vector3)

Source:
Vector3.cs

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

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

Parameters

vector
Vector3

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(Vector3, MidpointRounding)

Source:
Vector3.cs

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

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

Parameters

vector
Vector3

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