-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
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
Feature/gridedit 1552 refactor smoothness and orthogonality 2 #396
base: master
Are you sure you want to change the base?
Feature/gridedit 1552 refactor smoothness and orthogonality 2 #396
Conversation
4152e1d
to
89f2ca8
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Make all methods static and remove const qualifiers.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Make all methods static and remove const qualifiers.
@@ -1417,7 +1419,8 @@ TEST(Mesh2D, GetSmoothness_OnTriangularMesh_ShouldgetSmoothnessValues) | |||
const auto mesh = ReadLegacyMesh2DFromFile(TEST_FOLDER + "/data/TestOrthogonalizationMediumTriangularGrid_net.nc"); | |||
|
|||
// Execute | |||
const auto smoothness = mesh->GetSmoothness(); | |||
meshkernel::MeshSmoothness meshSmoothness; | |||
const auto smoothness = meshSmoothness.Compute(*mesh); //->GetSmoothness(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove comment
No description provided.