blob: 40471a42bda71f48148d04104931cf5bd7c8acc3 (
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
|
// File: PGeom_Transformation.cxx
// Created: Thu Mar 4 10:58:59 1993
// Author: Philippe DAUTRY
// <fid@sdsun2>
// Copyright: Matra Datavision 1993
#include <PGeom_Transformation.ixx>
//=======================================================================
//function : PGeom_Transformation
//purpose :
//=======================================================================
PGeom_Transformation::PGeom_Transformation()
{}
//=======================================================================
//function : PGeom_Transformation
//purpose :
//=======================================================================
PGeom_Transformation::PGeom_Transformation(const gp_Trsf& aTrsf) :
trsf(aTrsf)
{}
//=======================================================================
//function : Trsf
//purpose :
//=======================================================================
void PGeom_Transformation::Trsf(const gp_Trsf& aTrsf)
{ trsf = aTrsf; }
//=======================================================================
//function : Trsf
//purpose :
//=======================================================================
gp_Trsf PGeom_Transformation::Trsf() const
{ return trsf; }
|