We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please note "-" position in following functions:
inline const Vector2d& operator-=(const Vector2d &v){dx -= v.dx; dy =- v.dy; return *this;} const Vector3d& operator-=(const Vector3d &v){ dx -= v.dx; dy =- v.dy; dz = -v.dz; return *this;} // v1 -= v0;
The text was updated successfully, but these errors were encountered:
This was fixed at some point. Well spotted. Someone should close.
Sorry, something went wrong.
No branches or pull requests
Please note "-" position in following functions:
The text was updated successfully, but these errors were encountered: