Skip to content
Snippets Groups Projects
Commit aa879909 authored by Norihiro Watanabe's avatar Norihiro Watanabe
Browse files

support tri in the meshing tool

parent 9cd5d535
No related branches found
No related tags found
No related merge requests found
......@@ -62,6 +62,9 @@ int main (int argc, char* argv[])
case MeshElemType::LINE:
mesh = MeshLib::MeshGenerator::generateLineMesh(length, n_subdivision);
break;
case MeshElemType::TRIANGLE:
mesh = MeshLib::MeshGenerator::generateRegularTriMesh(length, n_subdivision);
break;
case MeshElemType::QUAD:
mesh = MeshLib::MeshGenerator::generateRegularQuadMesh(length, n_subdivision);
break;
......
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