Clarify the position of points in `Curve{2D,3D}.add_point()`
This commit is contained in:
parent
3f3826edb8
commit
35c8d332b5
|
@ -17,7 +17,7 @@
|
||||||
<argument index="2" name="out" type="Vector2" default="Vector2(0, 0)" />
|
<argument index="2" name="out" type="Vector2" default="Vector2(0, 0)" />
|
||||||
<argument index="3" name="at_position" type="int" default="-1" />
|
<argument index="3" name="at_position" type="int" default="-1" />
|
||||||
<description>
|
<description>
|
||||||
Adds a point to a curve at [code]position[/code], with control points [code]in[/code] and [code]out[/code].
|
Adds a point to a curve at [code]position[/code] relative to the [Curve2D]'s position, with control points [code]in[/code] and [code]out[/code].
|
||||||
If [code]at_position[/code] is given, the point is inserted before the point number [code]at_position[/code], moving that point (and every point after) after the inserted point. If [code]at_position[/code] is not given, or is an illegal value ([code]at_position <0[/code] or [code]at_position >= [method get_point_count][/code]), the point will be appended at the end of the point list.
|
If [code]at_position[/code] is given, the point is inserted before the point number [code]at_position[/code], moving that point (and every point after) after the inserted point. If [code]at_position[/code] is not given, or is an illegal value ([code]at_position <0[/code] or [code]at_position >= [method get_point_count][/code]), the point will be appended at the end of the point list.
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
<argument index="2" name="out" type="Vector3" default="Vector3(0, 0, 0)" />
|
<argument index="2" name="out" type="Vector3" default="Vector3(0, 0, 0)" />
|
||||||
<argument index="3" name="at_position" type="int" default="-1" />
|
<argument index="3" name="at_position" type="int" default="-1" />
|
||||||
<description>
|
<description>
|
||||||
Adds a point to a curve at [code]position[/code], with control points [code]in[/code] and [code]out[/code].
|
Adds a point to a curve at [code]position[/code] relative to the [Curve3D]'s position, with control points [code]in[/code] and [code]out[/code].
|
||||||
If [code]at_position[/code] is given, the point is inserted before the point number [code]at_position[/code], moving that point (and every point after) after the inserted point. If [code]at_position[/code] is not given, or is an illegal value ([code]at_position <0[/code] or [code]at_position >= [method get_point_count][/code]), the point will be appended at the end of the point list.
|
If [code]at_position[/code] is given, the point is inserted before the point number [code]at_position[/code], moving that point (and every point after) after the inserted point. If [code]at_position[/code] is not given, or is an illegal value ([code]at_position <0[/code] or [code]at_position >= [method get_point_count][/code]), the point will be appended at the end of the point list.
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
|
|
Loading…
Reference in New Issue