0022627: Change OCCT memory management defaults
[occt.git] / src / PGeom / PGeom_Transformation.cxx
1 // File:        PGeom_Transformation.cxx
2 // Created:     Thu Mar  4 10:58:59 1993
3 // Author:      Philippe DAUTRY
4 //              <fid@sdsun2>
5 // Copyright:   Matra Datavision 1993
6
7
8 #include <PGeom_Transformation.ixx>
9
10 //=======================================================================
11 //function : PGeom_Transformation
12 //purpose  : 
13 //=======================================================================
14
15 PGeom_Transformation::PGeom_Transformation()
16 {}
17
18
19 //=======================================================================
20 //function : PGeom_Transformation
21 //purpose  : 
22 //=======================================================================
23
24 PGeom_Transformation::PGeom_Transformation(const gp_Trsf& aTrsf) :
25        trsf(aTrsf)
26 {}
27
28
29 //=======================================================================
30 //function : Trsf
31 //purpose  : 
32 //=======================================================================
33
34 void  PGeom_Transformation::Trsf(const gp_Trsf& aTrsf)
35 { trsf = aTrsf; }
36
37
38 //=======================================================================
39 //function : Trsf
40 //purpose  : 
41 //=======================================================================
42
43 gp_Trsf  PGeom_Transformation::Trsf() const 
44 { return trsf; }