ceil method
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;
}
Rounds the x and y fields to the next larger integer values. @return {!goog.math.Coordinate} This coordinate with ceil'd fields.
Coordinate ceil()
{
x = x.ceilToDouble();
y = y.ceilToDouble();
return this;
}