Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


explicit operator double3

Explicitly converts a single bool value to a double3 vector by converting it to double and assigning it to every component.
Read time 1 minuteLast updated 10 days ago

Definition

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

explicit operator double3(double)

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

Parameters

bool to convert to double3

Returns

Type

Description

double3Converted value.

explicit operator double3(double)

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

Parameters

bool3 to convert to double3

Returns

Type

Description

double3Converted value.