Skip to content
Snippets Groups Projects
Commit 59c4e0d0 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

*** empty log message ***

parent d9677045
No related branches found
No related tags found
No related merge requests found
...@@ -306,6 +306,9 @@ int MergeFile(const char *name, int warn_if_missing) ...@@ -306,6 +306,9 @@ int MergeFile(const char *name, int warn_if_missing)
else if(!strcmp(ext, ".unv") || !strcmp(ext, ".UNV")){ else if(!strcmp(ext, ".unv") || !strcmp(ext, ".UNV")){
status = m->readUNV(name); status = m->readUNV(name);
} }
else if(!strcmp(ext, ".vtk") || !strcmp(ext, ".VTK")){
status = m->readVTK(name);
}
else if(!strcmp(ext, ".wrl") || !strcmp(ext, ".WRL") || else if(!strcmp(ext, ".wrl") || !strcmp(ext, ".WRL") ||
!strcmp(ext, ".vrml") || !strcmp(ext, ".VRML") || !strcmp(ext, ".vrml") || !strcmp(ext, ".VRML") ||
!strcmp(ext, ".iv") || !strcmp(ext, ".IV")){ !strcmp(ext, ".iv") || !strcmp(ext, ".IV")){
......
...@@ -3,7 +3,6 @@ ...@@ -3,7 +3,6 @@
// See the LICENSE.txt file for license information. Please report all // See the LICENSE.txt file for license information. Please report all
// bugs and problems to <gmsh@geuz.org>. // bugs and problems to <gmsh@geuz.org>.
#include <string.h>
#include "Message.h" #include "Message.h"
#include "PViewDataGModel.h" #include "PViewDataGModel.h"
#include "MVertex.h" #include "MVertex.h"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment