summaryrefslogtreecommitdiff
path: root/src/IGESSolid/IGESSolid_ToroidalSurface.cxx
blob: a0986443b5e18837c60b5047c8981cc8b7aaa068 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
//--------------------------------------------------------------------
//
//  File Name : IGESSolid_ToroidalSurface.cxx
//  Date      :
//  Author    : CKY / Contract Toubro-Larsen
//  Copyright : MATRA-DATAVISION 1993
//
//--------------------------------------------------------------------

#include <IGESSolid_ToroidalSurface.ixx>
#include <gp_GTrsf.hxx>


    IGESSolid_ToroidalSurface::IGESSolid_ToroidalSurface ()    {  }


    void  IGESSolid_ToroidalSurface::Init
  (const Handle(IGESGeom_Point)& aCenter,
   const Handle(IGESGeom_Direction)& anAxis,
   const Standard_Real majRadius, const Standard_Real minRadius,
   const Handle(IGESGeom_Direction)& Refdir)
{
  theCenter      = aCenter;
  theAxis        = anAxis;
  theMajorRadius = majRadius;
  theMinorRadius = minRadius;
  theRefDir      = Refdir;
  InitTypeAndForm(198, (theRefDir.IsNull() ? 0 : 1) );
}

    Handle(IGESGeom_Point)  IGESSolid_ToroidalSurface::Center () const
{
  return theCenter;
}

    gp_Pnt  IGESSolid_ToroidalSurface::TransformedCenter () const
{
  if (!HasTransf()) return theCenter->Value();
  else
    {
      gp_XYZ tmp = theCenter->Value().XYZ();
      Location().Transforms(tmp);
      return gp_Pnt(tmp);
    }
}

    Handle(IGESGeom_Direction)  IGESSolid_ToroidalSurface::Axis () const
{
  return theAxis;
}

    Standard_Real  IGESSolid_ToroidalSurface::MajorRadius () const
{
  return theMajorRadius;
}

    Standard_Real  IGESSolid_ToroidalSurface::MinorRadius () const
{
  return theMinorRadius;
}

    Handle(IGESGeom_Direction)  IGESSolid_ToroidalSurface::ReferenceDir () const
{
  return theRefDir;
}

    Standard_Boolean  IGESSolid_ToroidalSurface::IsParametrised () const
{
  return !(theRefDir.IsNull());
}