diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-08-06 00:38:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-06 00:38:59 +0200 |
commit | dc04050cfd187aed844654fed52b6cfcafa099c0 (patch) | |
tree | c66c329567991178ddd0678e18a319960485f79f /doc | |
parent | 9e361bfaaf0cd9ca54f026b11a602702d7d6c418 (diff) | |
parent | 2adb67c3c5e2038dc9841f2166e33313c71f4502 (diff) |
Merge pull request #63698 from PrecisionRender/plane-operator-asterisk
Add operator `*` to `Plane`
Diffstat (limited to 'doc')
-rw-r--r-- | doc/classes/Plane.xml | 7 | ||||
-rw-r--r-- | doc/classes/Transform3D.xml | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/doc/classes/Plane.xml b/doc/classes/Plane.xml index 32eb71f1c7..df9d25902b 100644 --- a/doc/classes/Plane.xml +++ b/doc/classes/Plane.xml @@ -179,6 +179,13 @@ [b]Note:[/b] Due to floating-point precision errors, consider using [method is_equal_approx] instead, which is more reliable. </description> </operator> + <operator name="operator *"> + <return type="Plane" /> + <argument index="0" name="right" type="Transform3D" /> + <description> + Inversely transforms (multiplies) the [Plane] by the given [Transform3D] transformation matrix. + </description> + </operator> <operator name="operator =="> <return type="bool" /> <argument index="0" name="right" type="Plane" /> diff --git a/doc/classes/Transform3D.xml b/doc/classes/Transform3D.xml index 9b673701ae..cefc74867c 100644 --- a/doc/classes/Transform3D.xml +++ b/doc/classes/Transform3D.xml @@ -216,6 +216,13 @@ </description> </operator> <operator name="operator *"> + <return type="Plane" /> + <argument index="0" name="right" type="Plane" /> + <description> + Transforms (multiplies) the [Plane] by the given [Transform3D] transformation matrix. + </description> + </operator> + <operator name="operator *"> <return type="Transform3D" /> <argument index="0" name="right" type="Transform3D" /> <description> |