Skip to content
Snippets Groups Projects
Commit 3ff45f52 authored by Tom Fischer's avatar Tom Fischer
Browse files

[A/U] Clang-reformat for better readability.

parent ab1e6e7e
No related branches found
No related tags found
No related merge requests found
......@@ -81,11 +81,12 @@ int main(int argc, char *argv[])
displacement[2] = z_arg.getValue();
}
INFO("translate model (%f, %f, %f).", displacement[0], displacement[1], displacement[2]);
INFO("translate model (%f, %f, %f).",
displacement[0],
displacement[1],
displacement[2]);
MeshLib::moveMeshNodes(
mesh->getNodes().begin(),
mesh->getNodes().end(),
displacement);
mesh->getNodes().begin(), mesh->getNodes().end(), displacement);
std::string out_fname(mesh_out_arg.getValue());
if (out_fname.empty()) {
......
......@@ -99,9 +99,9 @@ int main(int argc, char *argv[])
}
if (valid_arg.isSet()) {
// Validation
MeshLib::MeshValidation validation(*const_cast<MeshLib::Mesh*>(mesh)); // MeshValidation outputs error messages
/* Remark: MeshValidation can modify the original mesh */
// MeshValidation outputs error messages
// Remark: MeshValidation can modify the original mesh
MeshLib::MeshValidation validation(*mesh);
unsigned const n_holes (MeshLib::MeshValidation::detectHoles(*mesh));
if (n_holes > 0)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment