Difference between revisions of "BezierCurve:renderSegment"

(Created page)
 
m (Function)
Line 9: Line 9:
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
coordinates = BezierCurve:renderSegment( start, end, depth )
+
coordinates = BezierCurve:renderSegment( startpoint, endpoint, depth )
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===
{{param|number|start|The starting point along the curve. Must be between 0 and 1.}}
+
{{param|number|startpoint|The starting point along the curve. Must be between 0 and 1.}}
{{param|number|end|The end of the segment to render. Must be between 0 and 1.}}
+
{{param|number|endpoint|The end of the segment to render. Must be between 0 and 1.}}
 
{{param|number|depth (5)|Number of recursive subdivision steps.}}
 
{{param|number|depth (5)|Number of recursive subdivision steps.}}
 
=== Returns ===
 
=== Returns ===
 
{{param|table|coordinates|List of x,y-coordinate pairs of points on the specified part of the curve.}}
 
{{param|table|coordinates|List of x,y-coordinate pairs of points on the specified part of the curve.}}
 +
 
== See Also ==
 
== See Also ==
 
* [[parent::BezierCurve]]
 
* [[parent::BezierCurve]]

Revision as of 04:28, 4 October 2015

Available since LÖVE 0.10.0
This function is not supported in earlier versions.

Get a list of coordinates on a specific part of the curve, to be used with love.graphics.line.

This function samples the Bézier curve using recursive subdivision. You can control the recursion depth using the depth parameter.

If you are just need to know the position on the curve given a parameter, use BezierCurve:evaluate.

Function

Synopsis

coordinates = BezierCurve:renderSegment( startpoint, endpoint, depth )

Arguments

number startpoint
The starting point along the curve. Must be between 0 and 1.
number endpoint
The end of the segment to render. Must be between 0 and 1.
number depth (5)
Number of recursive subdivision steps.

Returns

table coordinates
List of x,y-coordinate pairs of points on the specified part of the curve.

See Also


Other Languages