Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:03:00

0001 // Copyright (c) 2020 OPEN CASCADE SAS
0002 //
0003 // This file is part of Open CASCADE Technology software library.
0004 //
0005 // This library is free software; you can redistribute it and/or modify it under
0006 // the terms of the GNU Lesser General Public License version 2.1 as published
0007 // by the Free Software Foundation, with special exception defined in the file
0008 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
0009 // distribution for complete text of the license and disclaimer of any warranty.
0010 //
0011 // Alternatively, this file may be used under the terms of Open CASCADE
0012 // commercial license or contractual agreement.
0013 
0014 #ifndef _BinToolsFormatVersion_HeaderFile
0015 #define _BinToolsFormatVersion_HeaderFile
0016 
0017 //! Defined BinTools format version
0018 enum BinTools_FormatVersion
0019 {
0020   BinTools_FormatVersion_VERSION_1 = 1, //!< Does not write CurveOnSurface UV Points into the file.
0021                                         //!  On reading calls Check() method.
0022   BinTools_FormatVersion_VERSION_2 = 2, //!< Stores CurveOnSurface UV Points.
0023                                         //!  On reading format is recognized from Version string.
0024   BinTools_FormatVersion_VERSION_3 = 3, //!< (OCCT 6.2.1) Correctly processes geometry with points on Curve,
0025                                         //!  or point on Surface, or points on curve of surface [#0009745]
0026   BinTools_FormatVersion_VERSION_4 = 4, //!< Stores per-vertex normal information in case
0027                                         //!  of triangulation-only Faces, because
0028                                         //!  no analytical geometry to restore normals
0029   BinTools_FormatVersion_CURRENT = BinTools_FormatVersion_VERSION_4 //!< Current version
0030 };
0031 
0032 enum
0033 {
0034   BinTools_FormatVersion_LOWER   = BinTools_FormatVersion_VERSION_1,
0035   BinTools_FormatVersion_UPPER   = BinTools_FormatVersion_VERSION_4
0036 };
0037 
0038 #endif