[]
Returns a vector containing the largest components of the specified vectors.
public static void Max(out Vector3 result, ref Vector3 left, ref Vector3 right)
Public Shared Sub Max(ByRef result As Vector3, ByRef left As Vector3, ByRef right As Vector3)
| Type | Name | Description |
|---|---|---|
| Vector3 | result | When the method completes, contains an new vector composed of the largest components of the source vectors. |
| Vector3 | left | The first source vector. |
| Vector3 | right | The second source vector. |
Returns a vector containing the largest components of the specified vectors.
public static Vector3 Max(Vector3 left, Vector3 right)
Public Shared Function Max(left As Vector3, right As Vector3) As Vector3
| Type | Name | Description |
|---|---|---|
| Vector3 | left | The first source vector. |
| Vector3 | right | The second source vector. |
| Type | Description |
|---|---|
| Vector3 | A vector containing the largest components of the source vectors. |