[Mono] Vector2/3 Project methods
This commit is contained in:
parent
334acc017f
commit
434973fb83
4 changed files with 12 additions and 2 deletions
|
|
@ -122,7 +122,7 @@ Vector2 Vector2::rotated(real_t p_by) const {
|
|||
}
|
||||
|
||||
Vector2 Vector2::project(const Vector2 &p_b) const {
|
||||
return p_b * (dot(p_b) / p_b.dot(p_b));
|
||||
return p_b * (dot(p_b) / p_b.length_squared());
|
||||
}
|
||||
|
||||
Vector2 Vector2::snapped(const Vector2 &p_by) const {
|
||||
|
|
|
|||
|
|
@ -241,7 +241,7 @@ real_t Vector3::distance_squared_to(const Vector3 &p_b) const {
|
|||
}
|
||||
|
||||
Vector3 Vector3::project(const Vector3 &p_b) const {
|
||||
return p_b * (dot(p_b) / p_b.dot(p_b));
|
||||
return p_b * (dot(p_b) / p_b.length_squared());
|
||||
}
|
||||
|
||||
real_t Vector3::angle_to(const Vector3 &p_b) const {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue