2020-01-10 18:15:50 +01:00
|
|
|
class_name GSTUtils
|
2020-01-28 00:31:10 +01:00
|
|
|
# Math and vector utility functions.
|
2019-12-19 20:04:08 +01:00
|
|
|
|
|
|
|
|
2020-01-28 00:31:10 +01:00
|
|
|
# Returns the `vector` with its length capped to `limit`.
|
2019-12-21 03:32:21 +01:00
|
|
|
static func clampedv3(vector: Vector3, limit: float) -> Vector3:
|
2020-01-16 09:44:44 +01:00
|
|
|
var length_squared := vector.length_squared()
|
|
|
|
var limit_squared := limit * limit
|
2019-12-23 17:38:27 +01:00
|
|
|
if length_squared > limit_squared:
|
|
|
|
vector *= sqrt(limit_squared / length_squared)
|
2019-12-19 20:04:08 +01:00
|
|
|
return vector
|
2020-01-27 18:57:51 +01:00
|
|
|
|
|
|
|
|
2020-01-28 00:31:10 +01:00
|
|
|
# Returns an angle in radians between the positive X axis and the `vector`.
|
|
|
|
#
|
|
|
|
# This assumes orientation for 2D agents or 3D agents that are upright and
|
|
|
|
# rotate around the Y axis.
|
2020-01-27 18:57:51 +01:00
|
|
|
static func vector_to_angle(vector: Vector3) -> float:
|
|
|
|
return atan2(vector.x, -vector.y)
|