0030675: Visualization - remove redundant proxy classes in hierarchy of PrsMgr_Presen...
[occt.git] / src / IGESSolid / IGESSolid_ToroidalSurface.cxx
1 // Created by: CKY / Contract Toubro-Larsen
2 // Copyright (c) 1993-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 //--------------------------------------------------------------------
17 //--------------------------------------------------------------------
18
19 #include <gp_GTrsf.hxx>
20 #include <gp_Pnt.hxx>
21 #include <IGESGeom_Direction.hxx>
22 #include <IGESGeom_Point.hxx>
23 #include <IGESSolid_ToroidalSurface.hxx>
24 #include <Standard_Type.hxx>
25
26 IMPLEMENT_STANDARD_RTTIEXT(IGESSolid_ToroidalSurface,IGESData_IGESEntity)
27
28 IGESSolid_ToroidalSurface::IGESSolid_ToroidalSurface ()    {  }
29
30
31     void  IGESSolid_ToroidalSurface::Init
32   (const Handle(IGESGeom_Point)& aCenter,
33    const Handle(IGESGeom_Direction)& anAxis,
34    const Standard_Real majRadius, const Standard_Real minRadius,
35    const Handle(IGESGeom_Direction)& Refdir)
36 {
37   theCenter      = aCenter;
38   theAxis        = anAxis;
39   theMajorRadius = majRadius;
40   theMinorRadius = minRadius;
41   theRefDir      = Refdir;
42   InitTypeAndForm(198, (theRefDir.IsNull() ? 0 : 1) );
43 }
44
45     Handle(IGESGeom_Point)  IGESSolid_ToroidalSurface::Center () const
46 {
47   return theCenter;
48 }
49
50     gp_Pnt  IGESSolid_ToroidalSurface::TransformedCenter () const
51 {
52   if (!HasTransf()) return theCenter->Value();
53   else
54     {
55       gp_XYZ tmp = theCenter->Value().XYZ();
56       Location().Transforms(tmp);
57       return gp_Pnt(tmp);
58     }
59 }
60
61     Handle(IGESGeom_Direction)  IGESSolid_ToroidalSurface::Axis () const
62 {
63   return theAxis;
64 }
65
66     Standard_Real  IGESSolid_ToroidalSurface::MajorRadius () const
67 {
68   return theMajorRadius;
69 }
70
71     Standard_Real  IGESSolid_ToroidalSurface::MinorRadius () const
72 {
73   return theMinorRadius;
74 }
75
76     Handle(IGESGeom_Direction)  IGESSolid_ToroidalSurface::ReferenceDir () const
77 {
78   return theRefDir;
79 }
80
81     Standard_Boolean  IGESSolid_ToroidalSurface::IsParametrised () const
82 {
83   return !(theRefDir.IsNull());
84 }