Constructor uint4
uint4(uint, uint, uint, uint)
Constructs a uint4 vector from four uint values.
Declaration
public uint4(uint x, uint y, uint z, uint w)
Parameters
Type | Name | Description |
---|---|---|
uint | x | The constructed vector's x component will be set to this value. |
uint | y | The constructed vector's y component will be set to this value. |
uint | z | The constructed vector's z component will be set to this value. |
uint | w | The constructed vector's w component will be set to this value. |
uint4(uint, uint, uint2)
Constructs a uint4 vector from two uint values and a uint2 vector.
Declaration
public uint4(uint x, uint y, uint2 zw)
Parameters
Type | Name | Description |
---|---|---|
uint | x | The constructed vector's x component will be set to this value. |
uint | y | The constructed vector's y component will be set to this value. |
uint2 | zw | The constructed vector's zw components will be set to this value. |
uint4(uint, uint2, uint)
Constructs a uint4 vector from a uint value, a uint2 vector and a uint value.
Declaration
public uint4(uint x, uint2 yz, uint w)
Parameters
Type | Name | Description |
---|---|---|
uint | x | The constructed vector's x component will be set to this value. |
uint2 | yz | The constructed vector's yz components will be set to this value. |
uint | w | The constructed vector's w component will be set to this value. |
uint4(uint, uint3)
Constructs a uint4 vector from a uint value and a uint3 vector.
Declaration
public uint4(uint x, uint3 yzw)
Parameters
Type | Name | Description |
---|---|---|
uint | x | The constructed vector's x component will be set to this value. |
uint3 | yzw | The constructed vector's yzw components will be set to this value. |
uint4(uint2, uint, uint)
Constructs a uint4 vector from a uint2 vector and two uint values.
Declaration
public uint4(uint2 xy, uint z, uint w)
Parameters
Type | Name | Description |
---|---|---|
uint2 | xy | The constructed vector's xy components will be set to this value. |
uint | z | The constructed vector's z component will be set to this value. |
uint | w | The constructed vector's w component will be set to this value. |
uint4(uint2, uint2)
Constructs a uint4 vector from two uint2 vectors.
Declaration
public uint4(uint2 xy, uint2 zw)
Parameters
Type | Name | Description |
---|---|---|
uint2 | xy | The constructed vector's xy components will be set to this value. |
uint2 | zw | The constructed vector's zw components will be set to this value. |
uint4(uint3, uint)
Constructs a uint4 vector from a uint3 vector and a uint value.
Declaration
public uint4(uint3 xyz, uint w)
Parameters
Type | Name | Description |
---|---|---|
uint3 | xyz | The constructed vector's xyz components will be set to this value. |
uint | w | The constructed vector's w component will be set to this value. |
uint4(uint4)
Constructs a uint4 vector from a uint4 vector.
Declaration
public uint4(uint4 xyzw)
Parameters
Type | Name | Description |
---|---|---|
uint4 | xyzw | The constructed vector's xyzw components will be set to this value. |
uint4(uint)
Constructs a uint4 vector from a single uint value by assigning it to every component.
Declaration
public uint4(uint v)
Parameters
Type | Name | Description |
---|---|---|
uint | v | uint to convert to uint4 |
uint4(bool)
Constructs a uint4 vector from a single bool value by converting it to uint and assigning it to every component.
Declaration
public uint4(bool v)
Parameters
Type | Name | Description |
---|---|---|
bool | v | bool to convert to uint4 |
uint4(bool4)
Constructs a uint4 vector from a bool4 vector by componentwise conversion.
Declaration
public uint4(bool4 v)
Parameters
Type | Name | Description |
---|---|---|
bool4 | v | bool4 to convert to uint4 |
uint4(int)
Constructs a uint4 vector from a single int value by converting it to uint and assigning it to every component.
Declaration
public uint4(int v)
Parameters
Type | Name | Description |
---|---|---|
int | v | int to convert to uint4 |
uint4(int4)
Constructs a uint4 vector from a int4 vector by componentwise conversion.
Declaration
public uint4(int4 v)
Parameters
Type | Name | Description |
---|---|---|
int4 | v | int4 to convert to uint4 |
uint4(float)
Constructs a uint4 vector from a single float value by converting it to uint and assigning it to every component.
Declaration
public uint4(float v)
Parameters
Type | Name | Description |
---|---|---|
float | v | float to convert to uint4 |
uint4(float4)
Constructs a uint4 vector from a float4 vector by componentwise conversion.
Declaration
public uint4(float4 v)
Parameters
Type | Name | Description |
---|---|---|
float4 | v | float4 to convert to uint4 |
uint4(double)
Constructs a uint4 vector from a single double value by converting it to uint and assigning it to every component.
Declaration
public uint4(double v)
Parameters
Type | Name | Description |
---|---|---|
double | v | double to convert to uint4 |
uint4(double4)
Constructs a uint4 vector from a double4 vector by componentwise conversion.
Declaration
public uint4(double4 v)
Parameters
Type | Name | Description |
---|---|---|
double4 | v | double4 to convert to uint4 |