float3D.float3 constructor

float3D.float3(
  1. num v0,
  2. num v1,
  3. num v2
)

Implementation

factory float3D.float3(
  num v0,
  num v1,
  num v2,
) => .new(
  v: [
    v0.toDouble(),
    v1.toDouble(),
    v2.toDouble(),
  ],
);