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