City Based Parking and Routing System API Documentation

Util.BezierComputePoint Method 

Calculates a point along the Bezier curve.

public static PointF BezierComputePoint(
   float fU,
   PointF a,
   PointF b,
   PointF c,
   PointF d
);

Parameters

fU
The position at which to calculate the curve point with being greater or equal to zero and smaller than one.
a
The start point of the Bezier curve.
b
The control point associated with the start point.
c
The control point associated with the end point.
d
The end point of the Bezier curve.

Return Value

A point on the Bezier curve.

See Also

Util Class | CBPRS.Infrastructure Namespace