Constructor bool4
bool4(Boolean, Boolean, Boolean, Boolean)
Constructs a bool4 vector from four bool values.
Declaration
public bool4(bool x, bool y, bool z, bool w)
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. |
Boolean | w | The constructed vector's w component will be set to this value. |
bool4(Boolean, Boolean, bool2)
Constructs a bool4 vector from two bool values and a bool2 vector.
Declaration
public bool4(bool x, bool y, bool2 zw)
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. |
bool2 | zw | The constructed vector's zw components will be set to this value. |
bool4(Boolean, bool2, Boolean)
Constructs a bool4 vector from a bool value, a bool2 vector and a bool value.
Declaration
public bool4(bool x, bool2 yz, bool w)
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. |
Boolean | w | The constructed vector's w component will be set to this value. |
bool4(Boolean, bool3)
Constructs a bool4 vector from a bool value and a bool3 vector.
Declaration
public bool4(bool x, bool3 yzw)
Parameters
Type | Name | Description |
---|---|---|
Boolean | x | The constructed vector's x component will be set to this value. |
bool3 | yzw | The constructed vector's yzw components will be set to this value. |
bool4(bool2, Boolean, Boolean)
Constructs a bool4 vector from a bool2 vector and two bool values.
Declaration
public bool4(bool2 xy, bool z, bool w)
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. |
Boolean | w | The constructed vector's w component will be set to this value. |
bool4(bool2, bool2)
Constructs a bool4 vector from two bool2 vectors.
Declaration
public bool4(bool2 xy, bool2 zw)
Parameters
Type | Name | Description |
---|---|---|
bool2 | xy | The constructed vector's xy components will be set to this value. |
bool2 | zw | The constructed vector's zw components will be set to this value. |
bool4(bool3, Boolean)
Constructs a bool4 vector from a bool3 vector and a bool value.
Declaration
public bool4(bool3 xyz, bool w)
Parameters
Type | Name | Description |
---|---|---|
bool3 | xyz | The constructed vector's xyz components will be set to this value. |
Boolean | w | The constructed vector's w component will be set to this value. |
bool4(bool4)
Constructs a bool4 vector from a bool4 vector.
Declaration
public bool4(bool4 xyzw)
Parameters
Type | Name | Description |
---|---|---|
bool4 | xyzw | The constructed vector's xyzw components will be set to this value. |
bool4(Boolean)
Constructs a bool4 vector from a single bool value by assigning it to every component.
Declaration
public bool4(bool v)
Parameters
Type | Name | Description |
---|---|---|
Boolean | v | bool to convert to bool4 |