Browse Source

Evaluated the following expressions to either values.

Hanif Bin Ariffin 5 years ago
parent
commit
d4ca91f408
1 changed files with 6 additions and 3 deletions
  1. 6 3
      contrib/Open3DGC/o3dgcSC3DMCDecoder.inl

+ 6 - 3
contrib/Open3DGC/o3dgcSC3DMCDecoder.inl

@@ -72,9 +72,12 @@ namespace o3dgc
         unsigned char mask = bstream.ReadUChar(m_iterator, m_streamType);
 
         ifs.SetCCW             ((mask & 1) == 1);
-        ifs.SetSolid           ((mask & 2) == 1);
-        ifs.SetConvex          ((mask & 4) == 1);
-        ifs.SetIsTriangularMesh((mask & 8) == 1);
+        // (mask & 2) == 1
+        ifs.SetSolid           (false);
+        // (mask & 4) == 1
+        ifs.SetConvex          (false);
+        // (mask & 8) == 1
+        ifs.SetIsTriangularMesh(false);
         //bool markerBit0 = (mask & 16 ) == 1;
         //bool markerBit1 = (mask & 32 ) == 1;
         //bool markerBit2 = (mask & 64 ) == 1;