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
If we take following points and motions:
auto point1 = make_spherical_representation(23.0*bud::degree,21.0*bud::degree,22.0*meter); auto point2 = make_spherical_representation(23.0*bud::degree,21.0*bud::degree,22.0*centimeter); auto motion1 =make_spherical_coslat_differential(21.0*bud::degree,22.0*bud::degree,23.1*meter/second); auto motion2 =make_spherical_coslat_differential(21.0*bud::degree,22.0*bud::degree,23.1*centimeter/second); cout << boolalpha << (point1 == point2) << endl; cout << boolalpha << (motion1 == motion2) << endl;
we are getting this result:
true true
But expected:
false false
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
If we take following points and motions:
we are getting this result:
But expected:
The text was updated successfully, but these errors were encountered: