Point3m.xyzm constructor

const Point3m.xyzm(
  1. num x,
  2. num y,
  3. num z,
  4. num m,
)

A point with coordinates given in order x, y, z, m.

Implementation

const Point3m.xyzm(num x, num y, num z, this.m) : super(x: x, y: y, z: z);