Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


float4

Constructs a float4 vector from four float values.
Read time 4 minutesLast updated 4 days ago

Definition

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

float4(float, float, float, float)

Constructs a float4 vector from four float values.
public float4(float x, float y, float z, float 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.

float4(float, float, float2)

Constructs a float4 vector from two float values and a float2 vector.
public float4(float x, float y, float2 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.

float4(float, float2, float)

Constructs a float4 vector from a float value, a float2 vector and a float value.
public float4(float x, float2 yz, float 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.

float4(float, float3)

Constructs a float4 vector from a float value and a float3 vector.
public float4(float x, float3 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.

float4(float2, float, float)

Constructs a float4 vector from a float2 vector and two float values.
public float4(float2 xy, float z, float 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.

float4(float2, float2)

Constructs a float4 vector from two float2 vectors.
public float4(float2 xy, float2 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.

float4(float3, float)

Constructs a float4 vector from a float3 vector and a float value.
public float4(float3 xyz, float 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.

float4(float4)

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

Parameters

xyzw

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

float4(float)

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

Parameters

float to convert to float4

float4(bool)

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

Parameters

bool to convert to float4

float4(bool4)

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

Parameters

bool4 to convert to float4

float4(int)

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

Parameters

int to convert to float4

float4(int4)

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

Parameters

int4 to convert to float4

float4(uint)

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

Parameters

uint to convert to float4

float4(uint4)

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

Parameters

uint4 to convert to float4

float4(half)

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

Parameters

half to convert to float4

float4(half4)

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

Parameters

half4 to convert to float4

float4(double)

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

Parameters

double to convert to float4

float4(double4)

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

Parameters

double4 to convert to float4