Add docs for is_equal_approx on structures

This commit is contained in:
Aaron Franke 2019-11-30 15:08:50 -05:00
parent 2e76c7ce19
commit 3231fca934
No known key found for this signature in database
GPG key ID: 40A1750B977E56BF
11 changed files with 14 additions and 4 deletions

View file

@ -182,6 +182,7 @@
<argument index="0" name="aabb" type="AABB">
</argument>
<description>
Returns [code]true[/code] if this [AABB] and [code]aabb[/code] are approximately equal, by calling [code]is_equal_approx[/code] on each component.
</description>
</method>
<method name="merge">
@ -190,7 +191,7 @@
<argument index="0" name="with" type="AABB">
</argument>
<description>
Returns a larger AABB that contains this AABB and [code]with[/code].
Returns a larger [AABB] that contains both this [AABB] and [code]with[/code].
</description>
</method>
</methods>

View file

@ -102,6 +102,7 @@
<argument index="1" name="epsilon" type="float" default="0.00001">
</argument>
<description>
Returns [code]true[/code] if this basis and [code]b[/code] are approximately equal, by calling [code]is_equal_approx[/code] on each component.
</description>
</method>
<method name="orthonormalized">

View file

@ -157,6 +157,7 @@
<argument index="0" name="color" type="Color">
</argument>
<description>
Returns [code]true[/code] if this color and [code]color[/code] are approximately equal, by running [method @GDScript.is_equal_approx] on each component.
</description>
</method>
<method name="lightened">

View file

@ -122,6 +122,7 @@
<argument index="0" name="plane" type="Plane">
</argument>
<description>
Returns [code]true[/code] if this plane and [code]plane[/code] are approximately equal, by running [method @GDScript.is_equal_approx] on each component.
</description>
</method>
<method name="is_point_over">

View file

@ -100,6 +100,7 @@
<argument index="0" name="quat" type="Quat">
</argument>
<description>
Returns [code]true[/code] if this quaterion and [code]quat[/code] are approximately equal, by running [method @GDScript.is_equal_approx] on each component.
</description>
</method>
<method name="is_normalized">

View file

@ -143,6 +143,7 @@
<argument index="0" name="rect" type="Rect2">
</argument>
<description>
Returns [code]true[/code] if this [Rect2] and [code]rect[/code] are approximately equal, by calling [code]is_equal_approx[/code] on each component.
</description>
</method>
<method name="merge">
@ -151,7 +152,7 @@
<argument index="0" name="b" type="Rect2">
</argument>
<description>
Returns a larger Rect2 that contains this Rect2 and [code]b[/code].
Returns a larger [Rect2] that contains this [Rect2] and [code]b[/code].
</description>
</method>
</methods>

View file

@ -95,6 +95,7 @@
<argument index="0" name="transform" type="Transform">
</argument>
<description>
Returns [code]true[/code] if this transform and [code]transform[/code] are approximately equal, by calling [code]is_equal_approx[/code] on each component.
</description>
</method>
<method name="looking_at">

View file

@ -112,6 +112,7 @@
<argument index="0" name="transform" type="Transform2D">
</argument>
<description>
Returns [code]true[/code] if this transform and [code]transform[/code] are approximately equal, by calling [code]is_equal_approx[/code] on each component.
</description>
</method>
<method name="orthonormalized">

View file

@ -159,6 +159,7 @@
<argument index="0" name="v" type="Vector2">
</argument>
<description>
Returns [code]true[/code] if this vector and [code]v[/code] are approximately equal, by running [method @GDScript.is_equal_approx] on each component.
</description>
</method>
<method name="is_normalized">

View file

@ -135,6 +135,7 @@
<argument index="0" name="v" type="Vector3">
</argument>
<description>
Returns [code]true[/code] if this vector and [code]v[/code] are approximately equal, by running [method @GDScript.is_equal_approx] on each component.
</description>
</method>
<method name="is_normalized">

View file

@ -502,7 +502,7 @@
<argument index="1" name="b" type="float">
</argument>
<description>
Returns True/False whether [code]a[/code] and [code]b[/code] are approximately equal to each other.
Returns [code]true[/code] if [code]a[/code] and [code]b[/code] are approximately equal to each other.
</description>
</method>
<method name="is_inf">
@ -538,7 +538,7 @@
<argument index="0" name="s" type="float">
</argument>
<description>
Returns True/False whether [code]s[/code] is zero or almost zero.
Returns [code]true[/code] if [code]s[/code] is zero or almost zero.
</description>
</method>
<method name="len">