Back to home page

EIC code displayed by LXR

 
 

    


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

0001 // Created by: Julia GERASIMOVA
0002 // Copyright (c) 2015 OPEN CASCADE SAS
0003 //
0004 // This file is part of Open CASCADE Technology software library.
0005 //
0006 // This library is free software; you can redistribute it and/or modify it under
0007 // the terms of the GNU Lesser General Public License version 2.1 as published
0008 // by the Free Software Foundation, with special exception defined in the file
0009 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
0010 // distribution for complete text of the license and disclaimer of any warranty.
0011 //
0012 // Alternatively, this file may be used under the terms of Open CASCADE
0013 // commercial license or contractual agreement.
0014 
0015 #ifndef _ChFiDS_ChamfMode_HeaderFile
0016 #define _ChFiDS_ChamfMode_HeaderFile
0017 
0018 //! this enumeration defines several modes of chamfer
0019 enum ChFiDS_ChamfMode
0020 {
0021   //! chamfer with constant distance from spine to one of the two surfaces
0022   ChFiDS_ClassicChamfer,
0023   
0024   //! symmetric chamfer with constant throat
0025   //! that is the height of isosceles triangle in section
0026   ChFiDS_ConstThroatChamfer,
0027   
0028   //! chamfer with constant throat: the section of chamfer is right-angled triangle,
0029   //! the first of two surfaces (where is the top of the chamfer)
0030   //! is virtually moved inside the solid by offset operation,
0031   //! the apex of the section is on the intersection curve between moved surface and second surface,
0032   //! right angle is at the top of the chamfer,
0033   //! the length of the leg from apex to top is constant - it is throat
0034   ChFiDS_ConstThroatWithPenetrationChamfer
0035 };
0036 
0037 #endif // _ChFiDS_ChamfMode_HeaderFile