Skip to content
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

Expansion of GoCAD interface #2586

Merged
merged 15 commits into from
Aug 12, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
added type flag in conversion utility
  • Loading branch information
rinkk authored and TomFischer committed Aug 12, 2019
commit 8ccb23145bb7864ecc24fec172dd5fecf323076e
2 changes: 1 addition & 1 deletion Applications/Utils/FileConverter/GocadTSurfaceReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ int main(int argc, char* argv[])
if (export_surfaces_arg.isSet())
t = FileIO::Gocad::DataType::TSURF;
std::vector<std::unique_ptr<MeshLib::Mesh>> meshes;
if (!FileIO::Gocad::GocadAsciiReader::readFile(file_name, meshes))
if (!FileIO::Gocad::GocadAsciiReader::readFile(file_name, meshes, t))
{
ERR("Error reading file.");
return 1;
Expand Down