hullPoint method
- 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);
}
Set the min and max of this so that this contains point
.
void hullPoint(Vector2 point) {
Vector2.min(_min, point, _min);
Vector2.max(_max, point, _max);
}