min method
Implementation
Coordinate min(Coordinate minCoor)
{
this.x = Math.min(this.x, minCoor.x);
this.y = Math.min(this.y, minCoor.y);
return this;
}
Coordinate min(Coordinate minCoor)
{
this.x = Math.min(this.x, minCoor.x);
this.y = Math.min(this.y, minCoor.y);
return this;
}