Calculates the median between two n-dimensional points.
// Returns [75, -25, 305.5]const median = Chalkboard.geom.mid([50, 0, 100], [100, -50, 511]); Copy
// Returns [75, -25, 305.5]const median = Chalkboard.geom.mid([50, 0, 100], [100, -50, 511]);
The first point
The second point
Calculates the median between two n-dimensional points.
Example