summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjsjtxietian <jsjtxietian@outlook.com>2024-08-21 12:41:12 +0800
committerjsjtxietian <jsjtxietian@outlook.com>2024-08-21 16:00:25 +0800
commit5183588499692da71d3ec582d69c805c6f91f095 (patch)
tree8c05754f0505228188dd94a14a0a9c449a9ecf71
parent62de80d6138c09cb2c4c66d0b963820f95ad1f21 (diff)
downloadredot-engine-5183588499692da71d3ec582d69c805c6f91f095.tar.gz
Fix curve2d incorrect sample range description
-rw-r--r--doc/classes/Curve2D.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/Curve2D.xml b/doc/classes/Curve2D.xml
index 0e75c65f50..6ce9616fb6 100644
--- a/doc/classes/Curve2D.xml
+++ b/doc/classes/Curve2D.xml
@@ -88,7 +88,7 @@
<param index="0" name="idx" type="int" />
<param index="1" name="t" type="float" />
<description>
- Returns the position between the vertex [param idx] and the vertex [code]idx + 1[/code], where [param t] controls if the point is the first vertex ([code]t = 0.0[/code]), the last vertex ([code]t = 1.0[/code]), or in between. Values of [param t] outside the range ([code]0.0 &gt;= t &lt;=1[/code]) give strange, but predictable results.
+ Returns the position between the vertex [param idx] and the vertex [code]idx + 1[/code], where [param t] controls if the point is the first vertex ([code]t = 0.0[/code]), the last vertex ([code]t = 1.0[/code]), or in between. Values of [param t] outside the range ([code]0.0 &lt;= t &lt;= 1.0[/code]) give strange, but predictable results.
If [param idx] is out of bounds it is truncated to the first or last vertex, and [param t] is ignored. If the curve has no points, the function sends an error to the console, and returns [code](0, 0)[/code].
</description>
</method>