blob: d02543020467f62fe536f3c4022c748a6e46c9d1 (
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: PGeom2d_Transformation.cxx
// Created: Thu Apr 15 11:09:21 1993
// Author: Philippe DAUTRY
// <fid@mastox>
// Copyright: Matra Datavision 1993
#include <PGeom2d_Transformation.ixx>
//=======================================================================
//function : PGeom2d_Transformation
//purpose :
//=======================================================================
PGeom2d_Transformation::PGeom2d_Transformation()
{}
//=======================================================================
//function : PGeom2d_Transformation
//purpose :
//=======================================================================
PGeom2d_Transformation::PGeom2d_Transformation(const gp_Trsf2d& aTrsf) :
trsf(aTrsf)
{}
//=======================================================================
//function : Trsf
//purpose :
//=======================================================================
void PGeom2d_Transformation::Trsf(const gp_Trsf2d& aTrsf)
{ trsf = aTrsf; }
//=======================================================================
//function : Trsf
//purpose :
//=======================================================================
gp_Trsf2d PGeom2d_Transformation::Trsf() const
{ return trsf; }
|