0027958: Visualization, AIS_Trihedron - add shaded presentation option
[occt.git] / src / Prs3d / Prs3d_DatumAxes.hxx
diff --git a/src/Prs3d/Prs3d_DatumAxes.hxx b/src/Prs3d/Prs3d_DatumAxes.hxx
new file mode 100644 (file)
index 0000000..0266551
--- /dev/null
@@ -0,0 +1,34 @@
+// Copyright (c) 2016 OPEN CASCADE SAS
+//
+// This file is part of Open CASCADE Technology software library.
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License version 2.1 as published
+// by the Free Software Foundation, with special exception defined in the file
+// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
+// distribution for complete text of the license and disclaimer of any warranty.
+//
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
+
+#ifndef _Prs3d_DatumAxes_HeaderFile
+#define _Prs3d_DatumAxes_HeaderFile
+
+//! Enumeration defining an axes used in datum aspect, see Prs3d_Datum.
+enum Prs3d_DatumAxes
+{
+  Prs3d_DA_XAxis      = 0x00000001,      //!< X axis of the datum
+  Prs3d_DA_YAxis      = 0x00000002,      //!< Y axis of the datum
+  Prs3d_DA_ZAxis      = 0x00000004,      //!< Z axis of the datum
+  Prs3d_DA_XYAxis     = Prs3d_DA_XAxis
+                      | Prs3d_DA_YAxis, //!< XOY 2D axes
+  Prs3d_DA_YZAxis     = Prs3d_DA_YAxis
+                      | Prs3d_DA_ZAxis, //!< YOZ 2D axes
+  Prs3d_DA_XZAxis     = Prs3d_DA_XAxis
+                      | Prs3d_DA_ZAxis, //!< XOZ 2D axes
+  Prs3d_DA_XYZAxis    = Prs3d_DA_XAxis
+                      | Prs3d_DA_YAxis
+                      | Prs3d_DA_ZAxis  //!< XYZ 3D axes
+};
+
+#endif // _Prs3d_DatumParts_HeaderFile