Method bool3
bool3(Boolean, Boolean, Boolean)
Returns a bool3 vector constructed from three bool values.
Declaration
public static bool3 bool3(bool x, bool y, bool z)
Parameters
Type | Name | Description |
---|---|---|
Boolean | x | The constructed vector's x component will be set to this value. |
Boolean | y | The constructed vector's y component will be set to this value. |
Boolean | z | The constructed vector's z component will be set to this value. |
Returns
Type | Description |
---|---|
bool3 | bool3 constructed from arguments. |
bool3(Boolean, bool2)
Returns a bool3 vector constructed from a bool value and a bool2 vector.
Declaration
public static bool3 bool3(bool x, bool2 yz)
Parameters
Type | Name | Description |
---|---|---|
Boolean | x | The constructed vector's x component will be set to this value. |
bool2 | yz | The constructed vector's yz components will be set to this value. |
Returns
Type | Description |
---|---|
bool3 | bool3 constructed from arguments. |
bool3(bool2, Boolean)
Returns a bool3 vector constructed from a bool2 vector and a bool value.
Declaration
public static bool3 bool3(bool2 xy, bool z)
Parameters
Type | Name | Description |
---|---|---|
bool2 | xy | The constructed vector's xy components will be set to this value. |
Boolean | z | The constructed vector's z component will be set to this value. |
Returns
Type | Description |
---|---|
bool3 | bool3 constructed from arguments. |
bool3(bool3)
Returns a bool3 vector constructed from a bool3 vector.
Declaration
public static bool3 bool3(bool3 xyz)
Parameters
Type | Name | Description |
---|---|---|
bool3 | xyz | The constructed vector's xyz components will be set to this value. |
Returns
Type | Description |
---|---|
bool3 | bool3 constructed from arguments. |
bool3(Boolean)
Returns a bool3 vector constructed from a single bool value by assigning it to every component.
Declaration
public static bool3 bool3(bool v)
Parameters
Type | Name | Description |
---|---|---|
Boolean | v | bool to convert to bool3 |
Returns
Type | Description |
---|---|
bool3 | Converted value. |