diff options
author | jsjtxietian <jsjtxietian@outlook.com> | 2024-08-21 12:41:12 +0800 |
---|---|---|
committer | jsjtxietian <jsjtxietian@outlook.com> | 2024-08-21 16:00:25 +0800 |
commit | 5183588499692da71d3ec582d69c805c6f91f095 (patch) | |
tree | 8c05754f0505228188dd94a14a0a9c449a9ecf71 | |
parent | 62de80d6138c09cb2c4c66d0b963820f95ad1f21 (diff) | |
download | redot-engine-5183588499692da71d3ec582d69c805c6f91f095.tar.gz |
Fix curve2d incorrect sample range description
-rw-r--r-- | doc/classes/Curve2D.xml | 2 |
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 >= t <=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 <= t <= 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> |