0027961: Visualization - remove unused and no more working OpenGl_AVIWriter
[occt.git] / src / IGESSolid / IGESSolid_RightAngularWedge.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_Dir.hxx>
20 #include <gp_GTrsf.hxx>
21 #include <gp_Pnt.hxx>
22 #include <gp_XYZ.hxx>
23 #include <IGESSolid_RightAngularWedge.hxx>
24 #include <Standard_Type.hxx>
25
26 IMPLEMENT_STANDARD_RTTIEXT(IGESSolid_RightAngularWedge,IGESData_IGESEntity)
27
28 IGESSolid_RightAngularWedge::IGESSolid_RightAngularWedge ()    {  }
29
30
31     void  IGESSolid_RightAngularWedge::Init
32   (const gp_XYZ& aSize,   const Standard_Real LowX,
33    const gp_XYZ& aCorner, const gp_XYZ& anXAxis, const gp_XYZ& anZAxis)
34 {
35   theSize         = aSize;
36   theXSmallLength = LowX;
37   theCorner       = aCorner;         // default (0,0,0)
38   theXAxis        = anXAxis;         // default (1,0,0)
39   theZAxis        = anZAxis;         // default (0,0,1)
40   InitTypeAndForm(152,0);
41 }
42
43     gp_XYZ  IGESSolid_RightAngularWedge::Size () const
44 {
45   return theSize;
46 }
47
48     Standard_Real  IGESSolid_RightAngularWedge::XBigLength () const
49 {
50   return theSize.X();
51 }
52
53     Standard_Real  IGESSolid_RightAngularWedge::XSmallLength () const
54 {
55   return theXSmallLength;
56 }
57
58     Standard_Real  IGESSolid_RightAngularWedge::YLength () const
59 {
60   return theSize.Y();
61 }
62
63     Standard_Real  IGESSolid_RightAngularWedge::ZLength () const
64 {
65   return theSize.Z();
66 }
67
68     gp_Pnt  IGESSolid_RightAngularWedge::Corner () const
69 {
70   return gp_Pnt(theCorner);
71 }
72
73     gp_Pnt  IGESSolid_RightAngularWedge::TransformedCorner () const
74 {
75   if (!HasTransf()) return gp_Pnt(theCorner);
76   else
77     {
78       gp_XYZ tmp = theCorner;
79       Location().Transforms(tmp);
80       return gp_Pnt(tmp);
81     }
82 }
83
84     gp_Dir  IGESSolid_RightAngularWedge::XAxis () const
85 {
86   return gp_Dir(theXAxis);
87 }
88
89     gp_Dir  IGESSolid_RightAngularWedge::TransformedXAxis () const
90 {
91   if (!HasTransf()) return gp_Dir(theXAxis);
92   else
93     {
94       gp_XYZ tmp = theXAxis;
95       gp_GTrsf loc = Location();
96       loc.SetTranslationPart(gp_XYZ(0.,0.,0.));
97       loc.Transforms(tmp);
98       return gp_Dir(tmp);
99     }
100 }
101
102     gp_Dir  IGESSolid_RightAngularWedge::YAxis () const
103 {
104   return gp_Dir(theXAxis ^ theZAxis);     // ^ overloaded
105 }
106
107     gp_Dir  IGESSolid_RightAngularWedge::TransformedYAxis () const
108 {
109   if (!HasTransf()) return gp_Dir(theXAxis ^ theZAxis);
110   else
111     {
112       gp_XYZ tmp = theXAxis ^ theZAxis;
113       gp_GTrsf loc = Location();
114       loc.SetTranslationPart(gp_XYZ(0.,0.,0.));
115       loc.Transforms(tmp);
116       return gp_Dir(tmp);
117     }
118 }
119
120     gp_Dir  IGESSolid_RightAngularWedge::ZAxis () const
121 {
122   return gp_Dir(theZAxis);
123 }
124
125     gp_Dir  IGESSolid_RightAngularWedge::TransformedZAxis () const
126 {
127   if (!HasTransf()) return gp_Dir(theZAxis);
128   else
129     {
130       gp_XYZ tmp = theZAxis;
131       gp_GTrsf loc = Location();
132       loc.SetTranslationPart(gp_XYZ(0.,0.,0.));
133       loc.Transforms(tmp);
134       return gp_Dir(tmp);
135     }
136 }