getPoint method
Computes the curve at a point between 0 and 1. @param {number} t The point on the curve to find. @return {!goog.math.Coordinate} The computed coordinate.
Implementation
Coordinate getPoint(double t)
{
return new Coordinate( getPointX(t), getPointY(t) );
}