0030537: Visualization - wrapping text in font text formatter
[occt.git] / src / Prs3d / Prs3d_DatumAxes.hxx
CommitLineData
bc001a40 1// Copyright (c) 2016 OPEN CASCADE SAS
2//
3// This file is part of Open CASCADE Technology software library.
4//
5// This library is free software; you can redistribute it and/or modify it under
6// the terms of the GNU Lesser General Public License version 2.1 as published
7// by the Free Software Foundation, with special exception defined in the file
8// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
9// distribution for complete text of the license and disclaimer of any warranty.
10//
11// Alternatively, this file may be used under the terms of Open CASCADE
12// commercial license or contractual agreement.
13
14#ifndef _Prs3d_DatumAxes_HeaderFile
15#define _Prs3d_DatumAxes_HeaderFile
16
17//! Enumeration defining an axes used in datum aspect, see Prs3d_Datum.
18enum Prs3d_DatumAxes
19{
20 Prs3d_DA_XAxis = 0x00000001, //!< X axis of the datum
21 Prs3d_DA_YAxis = 0x00000002, //!< Y axis of the datum
22 Prs3d_DA_ZAxis = 0x00000004, //!< Z axis of the datum
23 Prs3d_DA_XYAxis = Prs3d_DA_XAxis
24 | Prs3d_DA_YAxis, //!< XOY 2D axes
25 Prs3d_DA_YZAxis = Prs3d_DA_YAxis
26 | Prs3d_DA_ZAxis, //!< YOZ 2D axes
27 Prs3d_DA_XZAxis = Prs3d_DA_XAxis
28 | Prs3d_DA_ZAxis, //!< XOZ 2D axes
29 Prs3d_DA_XYZAxis = Prs3d_DA_XAxis
30 | Prs3d_DA_YAxis
31 | Prs3d_DA_ZAxis //!< XYZ 3D axes
32};
33
34#endif // _Prs3d_DatumParts_HeaderFile