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