diff options
author | Max Hilbrunner <m.hilbrunner@gmail.com> | 2022-01-27 02:53:20 +0100 |
---|---|---|
committer | Max Hilbrunner <m.hilbrunner@gmail.com> | 2022-01-27 02:53:20 +0100 |
commit | 5deb5ebf2365d23c8228df252a30f444d5c3f20b (patch) | |
tree | b4fe2c5931f98f26b67c91ac8f5036ec8112971b /doc/classes/Transform3D.xml | |
parent | 2c7ff931dfacb72df446473b3e74fb61c472bf36 (diff) |
Expose Transform3D::sphere_interpolate_with()
Diffstat (limited to 'doc/classes/Transform3D.xml')
-rw-r--r-- | doc/classes/Transform3D.xml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/classes/Transform3D.xml b/doc/classes/Transform3D.xml index e679a8cfeb..ccecaaa6ac 100644 --- a/doc/classes/Transform3D.xml +++ b/doc/classes/Transform3D.xml @@ -106,6 +106,14 @@ Scales basis and origin of the transform by the given scale factor, using matrix multiplication. </description> </method> + <method name="sphere_interpolate_with" qualifiers="const"> + <return type="Transform3D" /> + <argument index="0" name="xform" type="Transform3D" /> + <argument index="1" name="weight" type="float" /> + <description> + Returns a transform spherically interpolated between this transform and another by a given [code]weight[/code] (on the range of 0.0 to 1.0). + </description> + </method> <method name="translated" qualifiers="const"> <return type="Transform3D" /> <argument index="0" name="offset" type="Vector3" /> |