Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


half4

Constructs a half4 vector from four half values.
Read time 3 minutesLast updated 9 days ago

Definition

  • Type: Constructor
  • Namespace: Unity.Mathematics
  • Assembly: UnityEngine.MathematicsModule

half4(half, half, half, half)

Constructs a half4 vector from four half values.
public half4(half x, half y, half z, half w)

Parameters

The constructed vector's x component will be set to this value.

The constructed vector's y component will be set to this value.

The constructed vector's z component will be set to this value.

The constructed vector's w component will be set to this value.

half4(half, half, half2)

Constructs a half4 vector from two half values and a half2 vector.
public half4(half x, half y, half2 zw)

Parameters

The constructed vector's x component will be set to this value.

The constructed vector's y component will be set to this value.

The constructed vector's zw components will be set to this value.

half4(half, half2, half)

Constructs a half4 vector from a half value, a half2 vector and a half value.
public half4(half x, half2 yz, half w)

Parameters

The constructed vector's x component will be set to this value.

The constructed vector's yz components will be set to this value.

The constructed vector's w component will be set to this value.

half4(half, half3)

Constructs a half4 vector from a half value and a half3 vector.
public half4(half x, half3 yzw)

Parameters

The constructed vector's x component will be set to this value.

The constructed vector's yzw components will be set to this value.

half4(half2, half, half)

Constructs a half4 vector from a half2 vector and two half values.
public half4(half2 xy, half z, half w)

Parameters

The constructed vector's xy components will be set to this value.

The constructed vector's z component will be set to this value.

The constructed vector's w component will be set to this value.

half4(half2, half2)

Constructs a half4 vector from two half2 vectors.
public half4(half2 xy, half2 zw)

Parameters

The constructed vector's xy components will be set to this value.

The constructed vector's zw components will be set to this value.

half4(half3, half)

Constructs a half4 vector from a half3 vector and a half value.
public half4(half3 xyz, half w)

Parameters

The constructed vector's xyz components will be set to this value.

The constructed vector's w component will be set to this value.

half4(half4)

Constructs a half4 vector from a half4 vector.
public half4(half4 xyzw)

Parameters

xyzw

The constructed vector's xyzw components will be set to this value.

half4(half)

Constructs a half4 vector from a single half value by assigning it to every component.
public half4(half v)

Parameters

half to convert to half4

half4(float)

Constructs a half4 vector from a single float value by converting it to half and assigning it to every component.
public half4(float v)

Parameters

float to convert to half4

half4(float4)

Constructs a half4 vector from a float4 vector by componentwise conversion.
public half4(float4 v)

Parameters

float4 to convert to half4

half4(double)

Constructs a half4 vector from a single double value by converting it to half and assigning it to every component.
public half4(double v)

Parameters

double to convert to half4

half4(double4)

Constructs a half4 vector from a double4 vector by componentwise conversion.
public half4(double4 v)

Parameters

double4 to convert to half4