Difference between revisions of "BezierCurve:insertControlPoint"
m (Metadatafoo) |
m (Add fullstop.) |
||
(4 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
{{newin|[[0.9.0]]|090|type=function}} | {{newin|[[0.9.0]]|090|type=function}} | ||
− | Insert control point | + | Insert control point as the new i-th control point. Existing control points from i onwards are pushed back by 1. Indices start with 1. Negative indices wrap around: -1 is the last control point, -2 the one before the last, etc. |
== Function == | == Function == | ||
=== Synopsis === | === Synopsis === | ||
<source lang="lua"> | <source lang="lua"> | ||
− | BezierCurve:insertControlPoint(x,y, i) | + | BezierCurve:insertControlPoint( x, y, i ) |
</source> | </source> | ||
=== Arguments === | === Arguments === | ||
Line 12: | Line 12: | ||
{{param|number|i (-1)|Index of the control point.}} | {{param|number|i (-1)|Index of the control point.}} | ||
=== Returns === | === Returns === | ||
− | Nothing | + | Nothing. |
== See Also == | == See Also == | ||
* [[parent::BezierCurve]] | * [[parent::BezierCurve]] | ||
Line 20: | Line 20: | ||
* [[love.math]] | * [[love.math]] | ||
[[Category:Functions]] | [[Category:Functions]] | ||
− | {{#set:Description= | + | {{#set:Description=Insert control point after the i-th control point.}} |
== Other Languages == | == Other Languages == | ||
− | {{i18n|BezierCurve: | + | {{i18n|BezierCurve:insertControlPoint}} |
Latest revision as of 17:11, 19 May 2017
Available since LÖVE 0.9.0 |
This function is not supported in earlier versions. |
Insert control point as the new i-th control point. Existing control points from i onwards are pushed back by 1. Indices start with 1. Negative indices wrap around: -1 is the last control point, -2 the one before the last, etc.
Function
Synopsis
BezierCurve:insertControlPoint( x, y, i )
Arguments
number x
- Position of the control point along the x axis.
number y
- Position of the control point along the y axis.
number i (-1)
- Index of the control point.
Returns
Nothing.
See Also
Other Languages
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info