1 // Copyright (C) 2007-2021 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 // Lesser General Public License for more details.
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // GEOM OBJECT : interactive object for Geometry entities visualization
24 // File : GEOM_AISDimension.hxx
27 #ifndef GEOM_AISDimension_HeaderFile
28 #define GEOM_AISDimension_HeaderFile
30 #include <AIS_LengthDimension.hxx>
31 #include <AIS_DiameterDimension.hxx>
32 #include <AIS_AngleDimension.hxx>
34 DEFINE_STANDARD_HANDLE(GEOM_AISLength, AIS_LengthDimension)
35 DEFINE_STANDARD_HANDLE(GEOM_AISDiameter, AIS_DiameterDimension)
36 DEFINE_STANDARD_HANDLE(GEOM_AISAngle, AIS_AngleDimension)
38 //=================================================================================
39 // class : GEOM_AISLength
40 // purpose : presentation of length dimension property
41 //=================================================================================
42 class GEOM_AISLength : public AIS_LengthDimension
46 DEFINE_STANDARD_RTTIEXT(GEOM_AISLength,AIS_LengthDimension)
49 Standard_EXPORT GEOM_AISLength( const Standard_Integer theId );
50 Standard_EXPORT Standard_Integer GetId() const;
51 Standard_EXPORT void SetId( const Standard_Integer theId );
54 Standard_Integer myId;
57 //=================================================================================
58 // class : GEOM_AISDiameter
59 // purpose : presentation of diameter dimension property
60 //=================================================================================
61 class GEOM_AISDiameter : public AIS_DiameterDimension
65 DEFINE_STANDARD_RTTIEXT(GEOM_AISDiameter,AIS_DiameterDimension)
68 Standard_EXPORT GEOM_AISDiameter( const Standard_Integer theId );
69 Standard_EXPORT Standard_Integer GetId() const;
70 Standard_EXPORT void SetId( const Standard_Integer theId );
73 Standard_Integer myId;
76 //=================================================================================
77 // class : GEOM_AISAngle
78 // purpose : presentation of angle dimension property
79 //=================================================================================
80 class GEOM_AISAngle : public AIS_AngleDimension
84 DEFINE_STANDARD_RTTIEXT(GEOM_AISAngle,AIS_AngleDimension)
87 Standard_EXPORT GEOM_AISAngle( const Standard_Integer theId );
88 Standard_EXPORT Standard_Integer GetId() const;
89 Standard_EXPORT void SetId( const Standard_Integer theId );
92 Standard_Integer myId;