0026936: Drawbacks of inlining in new type system in OCCT 7.0 -- manual
[occt.git] / src / Aspect / Aspect_TypeOfMarker.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_TypeOfMarker_HeaderFile
17 #define _Aspect_TypeOfMarker_HeaderFile
18
19 //! Definition of types of markers
20 //!
21 //! TOM_POINT   point   .
22 //! TOM_PLUS    plus    +
23 //! TOM_STAR    star    *
24 //! TOM_X       cross   x
25 //! TOM_O       circle  O
26 //! TOM_O_POINT a point in a circle
27 //! TOM_O_PLUS  a plus in a circle
28 //! TOM_O_STAR  a star in a circle
29 //! TOM_O_X     a cross in a circle
30 //! TOM_RING1   a large ring
31 //! TOM_RING2   a medium ring
32 //! TOM_RING3   a small ring
33 //! TOM_BALL    a ball with 1 color and different saturations
34 //! TOM_USERDEFINED     defined by Users
35 enum Aspect_TypeOfMarker
36 {
37 Aspect_TOM_POINT,
38 Aspect_TOM_PLUS,
39 Aspect_TOM_STAR,
40 Aspect_TOM_X,
41 Aspect_TOM_O,
42 Aspect_TOM_O_POINT,
43 Aspect_TOM_O_PLUS,
44 Aspect_TOM_O_STAR,
45 Aspect_TOM_O_X,
46 Aspect_TOM_RING1,
47 Aspect_TOM_RING2,
48 Aspect_TOM_RING3,
49 Aspect_TOM_BALL,
50 Aspect_TOM_USERDEFINED
51 };
52
53 #endif // _Aspect_TypeOfMarker_HeaderFile