0030686: Visualization, SelectMgr_ViewerSelector - sorting issues of transformation...
[occt.git] / src / Aspect / Aspect_HatchStyle.hxx
1 // Created by: NW,JPB,CAL
2 // Copyright (c) 1991-1999 Matra Datavision
3 // Copyright (c) 1999-2014 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
7 // This library is free software; you can redistribute it and/or modify it under
8 // the terms of the GNU Lesser General Public License version 2.1 as published
9 // by the Free Software Foundation, with special exception defined in the file
10 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 // distribution for complete text of the license and disclaimer of any warranty.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement.
15
16 #ifndef _Aspect_HatchStyle_HeaderFile
17 #define _Aspect_HatchStyle_HeaderFile
18
19 //! Definition of all available hatch styles.
20 enum Aspect_HatchStyle
21 {
22   Aspect_HS_SOLID              = 0,  // TEL_HS_SOLID (no hatching)
23   Aspect_HS_HORIZONTAL         = 7,  // TEL_HS_HORIZONTAL
24   Aspect_HS_HORIZONTAL_WIDE    = 11, // TEL_HS_HORIZONTAL_SPARSE
25   Aspect_HS_VERTICAL           = 8,  // TEL_HS_VERTICAL
26   Aspect_HS_VERTICAL_WIDE      = 12, // TEL_HS_VERTICAL_SPARSE
27   Aspect_HS_DIAGONAL_45        = 5,  // TEL_HS_DIAG_45
28   Aspect_HS_DIAGONAL_45_WIDE   = 9,  // TEL_HS_DIAG_45_SPARSE
29   Aspect_HS_DIAGONAL_135       = 6,  // TEL_HS_DIAG_135
30   Aspect_HS_DIAGONAL_135_WIDE  = 10, // TEL_HS_DIAG_135_SPARSE
31   Aspect_HS_GRID               = 3,  // TEL_HS_GRID
32   Aspect_HS_GRID_WIDE          = 4,  // TEL_HS_GRID_SPARSE
33   Aspect_HS_GRID_DIAGONAL      = 1,  // TEL_HS_CROSS
34   Aspect_HS_GRID_DIAGONAL_WIDE = 2,  // TEL_HS_CROSS_SPARSE
35   Aspect_HS_NB                 = 13,
36 };
37
38 #endif // _Aspect_HatchStyle_HeaderFile