Vector4 constructor

Vector4([
  1. num? x,
  2. num? y,
  3. num? z,
  4. num? w,
])

Implementation

Vector4([num? x, num? y, num? z, num? w]) {
  this.x = x ?? 0;
  this.y = y ?? 0;
  this.z = z ?? 0;
  this.w = w ?? 0;
}