| 94 | } |
| 95 | |
| 96 | float Vector2::DotProduct(const Vector2 &rhs) const |
| 97 | { |
| 98 | return (this->x * rhs.x) + (this->y * rhs.y); |
| 99 | } |
| 100 | |
| 101 | //Vector3 |
| 102 | Vector3::Vector3(float _x, float _y, float _z) |
nothing calls this directly
no outgoing calls
no test coverage detected