Added direction_to method to vectors

This commit is contained in:
Chaosus
2019-03-27 13:51:05 +03:00
parent 6574c557c9
commit 55f3bd97a2
7 changed files with 46 additions and 0 deletions

View File

@@ -81,6 +81,15 @@
Performs a cubic interpolation between vectors [code]pre_a[/code], [code]a[/code], [code]b[/code], [code]post_b[/code] ([code]a[/code] is current), by the given amount [code]t[/code]. [code]t[/code] is in the range of [code]0.0 - 1.0[/code], representing the amount of interpolation.
</description>
</method>
<method name="direction_to">
<return type="Vector3">
</return>
<argument index="0" name="b" type="Vector3">
</argument>
<description>
Returns the normalized vector pointing from this vector to [code]b[/code].
</description>
</method>
<method name="distance_squared_to">
<return type="float">
</return>