0032281: Visualization - add Select3D_SensitiveCylinder
[occt.git] / src / StdSelect / StdSelect_TypeOfSelectionImage.hxx
1 // Created on: 2016-12-09
2 // Copyright (c) 2016 OPEN CASCADE SAS
3 //
4 // This file is part of Open CASCADE Technology software library.
5 //
6 // This library is free software; you can redistribute it and/or modify it under
7 // the terms of the GNU Lesser General Public License version 2.1 as published
8 // by the Free Software Foundation, with special exception defined in the file
9 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
10 // distribution for complete text of the license and disclaimer of any warranty.
11 //
12 // Alternatively, this file may be used under the terms of Open CASCADE
13 // commercial license or contractual agreement.
14
15 #ifndef _StdSelect_TypeOfSelectionImage_HeaderFile
16 #define _StdSelect_TypeOfSelectionImage_HeaderFile
17
18 //! Type of output selection image.
19 enum StdSelect_TypeOfSelectionImage
20 {
21   StdSelect_TypeOfSelectionImage_NormalizedDepth = 0,     //!< normalized   depth (grayscale)
22   StdSelect_TypeOfSelectionImage_NormalizedDepthInverted, //!< normalized   depth, inverted
23   StdSelect_TypeOfSelectionImage_UnnormalizedDepth,       //!< unnormalized depth (grayscale)
24   StdSelect_TypeOfSelectionImage_ColoredDetectedObject,   //!< color of detected object
25   StdSelect_TypeOfSelectionImage_ColoredEntity,           //!< random color for each entity
26   StdSelect_TypeOfSelectionImage_ColoredEntityType,       //!< random color for each entity type
27   StdSelect_TypeOfSelectionImage_ColoredOwner,            //!< random color for each owner
28   StdSelect_TypeOfSelectionImage_ColoredSelectionMode,    //!< color of selection mode
29   StdSelect_TypeOfSelectionImage_SurfaceNormal            //!< normal direction values
30 };
31
32 #endif