Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:04:39

0001 // Copyright (c) 2016 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 _Prs3d_DatumAxes_HeaderFile
0015 #define _Prs3d_DatumAxes_HeaderFile
0016 
0017 //! Enumeration defining axes used in datum aspect, see Prs3d_Datum.
0018 enum Prs3d_DatumAxes
0019 {
0020   Prs3d_DatumAxes_XAxis   = 0x01,                  //!< X axis of the datum
0021   Prs3d_DatumAxes_YAxis   = 0x02,                  //!< Y axis of the datum
0022   Prs3d_DatumAxes_ZAxis   = 0x04,                  //!< Z axis of the datum
0023   Prs3d_DatumAxes_XYAxes  = Prs3d_DatumAxes_XAxis
0024                           | Prs3d_DatumAxes_YAxis, //!< XOY 2D axes
0025   Prs3d_DatumAxes_YZAxes  = Prs3d_DatumAxes_YAxis
0026                           | Prs3d_DatumAxes_ZAxis, //!< YOZ 2D axes
0027   Prs3d_DatumAxes_XZAxes  = Prs3d_DatumAxes_XAxis
0028                           | Prs3d_DatumAxes_ZAxis, //!< XOZ 2D axes
0029   Prs3d_DatumAxes_XYZAxes = Prs3d_DatumAxes_XAxis
0030                           | Prs3d_DatumAxes_YAxis
0031                           | Prs3d_DatumAxes_ZAxis, //!< XYZ 3D axes
0032 
0033   // old aliases
0034   Prs3d_DA_XAxis   = Prs3d_DatumAxes_XAxis,
0035   Prs3d_DA_YAxis   = Prs3d_DatumAxes_YAxis,
0036   Prs3d_DA_ZAxis   = Prs3d_DatumAxes_ZAxis,
0037   Prs3d_DA_XYAxis  = Prs3d_DatumAxes_XYAxes,
0038   Prs3d_DA_YZAxis  = Prs3d_DatumAxes_YZAxes,
0039   Prs3d_DA_XZAxis  = Prs3d_DatumAxes_XZAxes,
0040   Prs3d_DA_XYZAxis = Prs3d_DatumAxes_XYZAxes
0041 };
0042 
0043 #endif // _Prs3d_DatumParts_HeaderFile