Point3D.splat(num val)

Creates a new Point3D and "splats" the given value to each coordinate.

Source

Point3D.splat(num val): this.x = val, this.y = val, this.z = val;