bool2
Returns a bool2 vector constructed from two bool values.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Method
- Namespace: Unity.Mathematics
- Assembly: UnityEngine.MathematicsModule
bool2(bool, bool)
Returns a bool2 vector constructed from two bool values.
public static bool2 bool2(bool x, bool y)
Parameters
Returns
Type | Description |
|---|---|
| bool2 | bool2 constructed from arguments. |
bool2(bool2)
Returns a bool2 vector constructed from a bool2 vector.
public static bool2 bool2(bool2 xy)
Parameters
The constructed vector's xy components will be set to this value.
Returns
Type | Description |
|---|---|
| bool2 | bool2 constructed from arguments. |
bool2(bool)
Returns a bool2 vector constructed from a single bool value by assigning it to every component.
public static bool2 bool2(bool v)
Parameters
bool to convert to bool2
Returns
Type | Description |
|---|---|
| bool2 | Converted value. |