ceil method

Coordinate ceil()

Rounds the x and y fields to the next larger integer values. @return {!goog.math.Coordinate} This coordinate with ceil'd fields.

Implementation

Coordinate ceil()
{
  x = x.ceilToDouble();
  y = y.ceilToDouble();
  return this;
}