getPoint

public Point getPoint(double t)

This returns the point on the Bezier curve that is specified by the parametric t value. A Bezier curve is a parametric function that returns points along it with t ranging from [0, 1], with 0 being the beginning of the curve and 1 being at the end. The Follower will follow BezierCurves from 0 to 1, in terms of t.

Return

this returns the point requested.

Parameters

t

this is the t value of the parametric curve. t is clamped to be between 0 and 1 inclusive.