Vector3.zero constructor

Vector3.zero([
  1. double x = 0,
  2. double y = 0,
  3. double z = 0
])

Implementation

Vector3.zero([double x = 0, double y = 0, double z = 0]){
  storage = Float32List(3);
  this.x = x;
  this.y = y;
  this.z = z;
}