Method cross
cross(float3, float3)
Returns the cross product of two float3 vectors.
Declaration
public static float3 cross(float3 x, float3 y)
Parameters
| Type | Name | Description |
|---|---|---|
| float3 | x | First vector to use in cross product. |
| float3 | y | Second vector to use in cross product. |
Returns
| Type | Description |
|---|---|
| float3 | The cross product of x and y. |
cross(double3, double3)
Returns the cross product of two double3 vectors.
Declaration
public static double3 cross(double3 x, double3 y)
Parameters
| Type | Name | Description |
|---|---|---|
| double3 | x | First vector to use in cross product. |
| double3 | y | Second vector to use in cross product. |
Returns
| Type | Description |
|---|---|
| double3 | The cross product of x and y. |