Commit 29ffc436 authored by Сергей Никулкин's avatar Сергей Никулкин
Browse files

Update AneuMeshLoader.cpp

parent 20d716fd
No related merge requests found
Showing with 1 addition and 1 deletion
+1 -1
...@@ -21,7 +21,7 @@ void AneuMeshLoader::LoadMesh(const std::string& filename) { ...@@ -21,7 +21,7 @@ void AneuMeshLoader::LoadMesh(const std::string& filename) {
for (int i = 1; i <= amount; ++i) { for (int i = 1; i <= amount; ++i) {
Node tmp; Node tmp;
tmp.id = i; tmp.id = i;
file >> tmp.x >> tmp.y >> tmp.z; file >> tmp.coord[0] >> tmp.coord[1] >> tmp.coord[2];
tmp.ver = true; tmp.ver = true;
nodes.push_back(tmp); nodes.push_back(tmp);
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment