From f3e72b32ab35a8531731054f64ceddf49ec0807b Mon Sep 17 00:00:00 2001
From: aXu-AP <1621768+aXu-AP@users.noreply.github.com>
Date: Mon, 23 Jan 2023 22:29:15 +0200
Subject: [PATCH] Add Curve2D/tessellate_even_length description
class-reference
Copied from Curve3D's corresponding method.
---
doc/classes/Curve2D.xml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/doc/classes/Curve2D.xml b/doc/classes/Curve2D.xml
index b5e75dff683..fe597d0955e 100644
--- a/doc/classes/Curve2D.xml
+++ b/doc/classes/Curve2D.xml
@@ -162,6 +162,8 @@
+ Returns a list of points along the curve, with almost uniform density. [param max_stages] controls how many subdivisions a curve segment may face before it is considered approximate enough. Each subdivision splits the segment in half, so the default 5 stages may mean up to 32 subdivisions per curve segment. Increase with care!
+ [param tolerance_length] controls the maximal distance between two neighboring points, before the segment has to be subdivided.