hullPoint method

void hullPoint(
  1. Vector2 point
)

Set the min and max of this so that this contains point.

Implementation

void hullPoint(Vector2 point) {
  Vector2.min(_min, point, _min);
  Vector2.max(_max, point, _max);
}