From 4f0eae3c37823a35afbc6b50df7a4ab829e74280 Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Wed, 18 Mar 2009 18:59:13 +0000
Subject: [PATCH] w

---
 Geo/GModelIO_Mesh.cpp | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/Geo/GModelIO_Mesh.cpp b/Geo/GModelIO_Mesh.cpp
index 046a6e3bb8..be2f54ed72 100644
--- a/Geo/GModelIO_Mesh.cpp
+++ b/Geo/GModelIO_Mesh.cpp
@@ -678,7 +678,11 @@ int GModel::readSTL(const std::string &name, double tolerance)
   // "solid", or binary data header
   char buffer[256];
   fgets(buffer, sizeof(buffer), fp);
-  
+
+  // workaround for stupid 3D-DOCTOR software, which uses "solid" to
+  // start its binary files
+  if(!strncmp(buffer, "solid 3D-DOCTOR", 15)) buffer[0] = 'z';
+
   if(!strncmp(buffer, "solid", 5)){
     // ASCII STL
     points.resize(1);
@@ -722,7 +726,7 @@ int GModel::readSTL(const std::string &name, double tolerance)
       unsigned int nfacets = 0;
       size_t ret = fread(&nfacets, sizeof(unsigned int), 1, fp);
       bool swap = false;
-      if(nfacets > 10000000){
+      if(nfacets > 100000000){
         Msg::Info("Swapping bytes from binary file");
         swap = true;
         SwapBytes((char*)&nfacets, sizeof(unsigned int), 1);
-- 
GitLab