Vector3.all constructor

Vector3.all(double value)

Splat value into all lanes of the vector.

Implementation

factory Vector3.all(double value) => new Vector3.zero()..splat(value);