Salome HOME
Fix crash of BugRevolution.py import: apply the same patch, as on V2_2_0_maintainance
[modules/geom.git] / src / OBJECT / GEOM_AISTrihedron.cxx
1 //  GEOM_AISTrihedron : Filter for VTK viewer\r
2 //\r
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,\r
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS\r
5 //\r
6 //  This library is free software; you can redistribute it and/or\r
7 //  modify it under the terms of the GNU Lesser General Public\r
8 //  License as published by the Free Software Foundation; either\r
9 //  version 2.1 of the License.\r
10 //\r
11 //  This library is distributed in the hope that it will be useful,\r
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\r
14 //  Lesser General Public License for more details.\r
15 //\r
16 //  You should have received a copy of the GNU Lesser General Public\r
17 //  License along with this library; if not, write to the Free Software\r
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA\r
19 //\r
20 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org\r
21 //\r
22 //\r
23 //\r
24 //  File   : GEOM_AISTrihedron.cxx\r
25 //  Author : Sergey LITONIN\r
26 //  Module : SALOME\r
27 \r
28 #include "GEOM_AISTrihedron.hxx"\r
29 #include <Geom_Axis2Placement.hxx>\r
30 \r
31 IMPLEMENT_STANDARD_HANDLE(GEOM_AISTrihedron, AIS_Trihedron)\r
32 IMPLEMENT_STANDARD_RTTIEXT(GEOM_AISTrihedron, AIS_Trihedron)\r
33 \r
34 /*\r
35   Class       : GEOM_AISTrihedron\r
36   Description : Interactive object for displaying local CS\r
37 */\r
38 \r
39 GEOM_AISTrihedron::GEOM_AISTrihedron( const Handle(Geom_Axis2Placement)& thePlc )\r
40 : AIS_Trihedron( thePlc )\r
41 {\r
42 \r
43 }\r
44 Handle(SALOME_InteractiveObject) GEOM_AISTrihedron::getIO()\r
45 {\r
46   return myObject;\r
47 }\r
48 Standard_Boolean GEOM_AISTrihedron::hasIO()\r
49 {\r
50   return !myObject.IsNull();\r
51 }\r
52 \r
53 Standard_CString GEOM_AISTrihedron::getName()\r
54 {\r
55   return myName.ToCString();\r
56 }\r
57 void GEOM_AISTrihedron::setName( Standard_CString aName )\r
58 {\r
59   myName = TCollection_AsciiString( aName );\r
60 }\r
61 \r
62 void GEOM_AISTrihedron::setIO( const Handle(SALOME_InteractiveObject)& theIO )\r
63 {\r
64   myObject = theIO;\r
65 }\r
66 \r
67 \r
68 \r
69 \r
70 \r
71 \r
72