Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:05:05

0001 // Created on: 1996-04-09
0002 // Created by: Christian CAILLET
0003 // Copyright (c) 1996-1999 Matra Datavision
0004 // Copyright (c) 1999-2014 OPEN CASCADE SAS
0005 //
0006 // This file is part of Open CASCADE Technology software library.
0007 //
0008 // This library is free software; you can redistribute it and/or modify it under
0009 // the terms of the GNU Lesser General Public License version 2.1 as published
0010 // by the Free Software Foundation, with special exception defined in the file
0011 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
0012 // distribution for complete text of the license and disclaimer of any warranty.
0013 //
0014 // Alternatively, this file may be used under the terms of Open CASCADE
0015 // commercial license or contractual agreement.
0016 
0017 #ifndef _STEPControl_StepModelType_HeaderFile
0018 #define _STEPControl_StepModelType_HeaderFile
0019 
0020 //! Gives you the choice of translation mode for an Open
0021 //! CASCADE shape that is being translated to STEP.
0022 //! - STEPControl_AsIs translates an Open CASCADE shape to its
0023 //! highest possible STEP representation.
0024 //! - STEPControl_ManifoldSolidBrep translates an Open CASCADE shape
0025 //! to a STEP manifold_solid_brep or brep_with_voids entity.
0026 //! - STEPControl_FacetedBrep translates an Open CASCADE shape
0027 //! into a STEP faceted_brep entity.
0028 //! -  STEPControl_ShellBasedSurfaceModel translates an Open CASCADE shape
0029 //! into a STEP shell_based_surface_model entity.
0030 //! - STEPControl_GeometricCurveSet
0031 //! translates an Open CASCADE shape into a STEP geometric_curve_set entity.
0032 enum STEPControl_StepModelType
0033 {
0034 STEPControl_AsIs,
0035 STEPControl_ManifoldSolidBrep,
0036 STEPControl_BrepWithVoids,
0037 STEPControl_FacetedBrep,
0038 STEPControl_FacetedBrepAndBrepWithVoids,
0039 STEPControl_ShellBasedSurfaceModel,
0040 STEPControl_GeometricCurveSet,
0041 STEPControl_Hybrid
0042 };
0043 
0044 #endif // _STEPControl_StepModelType_HeaderFile