Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


explicit operator float3

Explicitly converts a single bool value to a float3 vector by converting it to float and assigning it to every component.
Read time 1 minuteLast updated 9 days ago

Definition

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

explicit operator float3(float)

Explicitly converts a single bool value to a float3 vector by converting it to float and assigning it to every component.
public static explicit operator float3(bool v)

Parameters

bool to convert to float3

Returns

Type

Description

float3Converted value.

explicit operator float3(float)

Explicitly converts a bool3 vector to a float3 vector by componentwise conversion.
public static explicit operator float3(bool3 v)

Parameters

bool3 to convert to float3

Returns

Type

Description

float3Converted value.

explicit operator float3(float)

Explicitly converts a single double value to a float3 vector by converting it to float and assigning it to every component.
public static explicit operator float3(double v)

Parameters

double to convert to float3

Returns

Type

Description

float3Converted value.

explicit operator float3(float)

Explicitly converts a double3 vector to a float3 vector by componentwise conversion.
public static explicit operator float3(double3 v)

Parameters

double3 to convert to float3

Returns

Type

Description

float3Converted value.