BezierCurve:getSegment
Available since LÖVE 0.10.0
This function is not supported in earlier versions.
Gets a BezierCurve that corresponds to the specified segment of this BezierCurve.
Function
Synopsis
curve = BezierCurve:getSegment( startpoint, endpoint )
Arguments
number startpoint
- The starting point along the curve. Must be between 0 and 1.
number endpoint
- The end of the segment. Must be between 0 and 1.
Returns
BezierCurve curve
- A BezierCurve that corresponds to the specified segment.
Please login to continue.