Method bool2
bool2(Boolean, Boolean)
Returns a bool2 vector constructed from two bool values.
Declaration
public static bool2 bool2(bool x, bool y)
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. |
Returns
Type | Description |
---|---|
bool2 | bool2 constructed from arguments. |
bool2(bool2)
Returns a bool2 vector constructed from a bool2 vector.
Declaration
public static bool2 bool2(bool2 xy)
Parameters
Type | Name | Description |
---|---|---|
bool2 | xy | The constructed vector's xy components will be set to this value. |
Returns
Type | Description |
---|---|
bool2 | bool2 constructed from arguments. |
bool2(Boolean)
Returns a bool2 vector constructed from a single bool value by assigning it to every component.
Declaration
public static bool2 bool2(bool v)
Parameters
Type | Name | Description |
---|---|---|
Boolean | v | bool to convert to bool2 |
Returns
Type | Description |
---|---|
bool2 | Converted value. |