summaryrefslogtreecommitdiff
path: root/doc/classes
diff options
context:
space:
mode:
authorYuri Rubinsky <chaosus89@gmail.com>2022-07-21 21:52:03 +0300
committerGitHub <noreply@github.com>2022-07-21 21:52:03 +0300
commit74be36e622efd2cea912a2ad444fd045a0e79d1e (patch)
treefc3178948fac71c12e4d00cad9c1a824eb5bea26 /doc/classes
parentd6b1dd4854be3b31673e7634d3b88499f3bd2b60 (diff)
parentccc56cc6d483c89905ab995808525f16ed24dd36 (diff)
Merge pull request #63289 from Chaosus/code_style_tolerance
Rename `epsilon` to `tolerance` in the `Plane::has_point` method
Diffstat (limited to 'doc/classes')
-rw-r--r--doc/classes/Plane.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/Plane.xml b/doc/classes/Plane.xml
index 6fefcef0a1..33e9e0c92d 100644
--- a/doc/classes/Plane.xml
+++ b/doc/classes/Plane.xml
@@ -83,9 +83,9 @@
<method name="has_point" qualifiers="const">
<return type="bool" />
<argument index="0" name="point" type="Vector3" />
- <argument index="1" name="epsilon" type="float" default="1e-05" />
+ <argument index="1" name="tolerance" type="float" default="1e-05" />
<description>
- Returns [code]true[/code] if [code]point[/code] is inside the plane. Comparison uses a custom minimum [code]epsilon[/code] threshold.
+ Returns [code]true[/code] if [code]point[/code] is inside the plane. Comparison uses a custom minimum [code]tolerance[/code] threshold.
</description>
</method>
<method name="intersect_3" qualifiers="const">