Add missing Vector3::direction_to() and Vector2::direction_to()

This commit is contained in:
Marc Gilleron
2020-06-05 19:07:56 +01:00
parent eacffba9f5
commit 78f5496f4b
2 changed files with 12 additions and 0 deletions

View File

@@ -203,6 +203,12 @@ struct Vector3 {
return std::atan2(cross(b).length(), dot(b));
}
inline Vector3 direction_to(const Vector3 &p_b) const {
Vector3 ret(p_b.x - x, p_b.y - y, p_b.z - z);
ret.normalize();
return ret;
}
inline Vector3 floor() const {
return Vector3(::floor(x), ::floor(y), ::floor(z));
}