Skip to content
Snippets Groups Projects
Commit fba9522b authored by Norihiro Watanabe's avatar Norihiro Watanabe Committed by Dmitri Naumov
Browse files

[App/Utils] forgot to specify the number of base nodes in createQuadraticMesh

parent b6f5a399
No related branches found
No related tags found
No related merge requests found
......@@ -131,7 +131,8 @@ static std::unique_ptr<MeshLib::Mesh> createQuadraticOrderMesh(MeshLib::Mesh con
new MeshLib::Mesh(org_mesh.getName(), vec_new_nodes, vec_new_eles,
org_mesh.getProperties().excludeCopyProperties(
std::vector<MeshLib::MeshItemType>(
1, MeshLib::MeshItemType::Node))));
1, MeshLib::MeshItemType::Node)),
org_mesh.getNumberOfNodes()));
return new_mesh;
}
......
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