size property

CustomPoint<T> size

A point that contains the difference between the point's axis projections.

Implementation

CustomPoint<T> get size {
  return max - min;
}