Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


explicit operator double4

Explicitly converts a single bool value to a double4 vector by converting it to double 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 double4(double)

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

Parameters

bool to convert to double4

Returns

Type

Description

double4Converted value.

explicit operator double4(double)

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

Parameters

bool4 to convert to double4

Returns

Type

Description

double4Converted value.