blob: 6c8a480ec9fc0b00c941d8f7056f4c2eb7ac00cb (
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
|
// File: TopLoc_Datum3D.cxx
// Created: Fri Jan 25 11:15:48 1991
// Author: Christophe MARION
// <cma@topsn3>
#include <Standard_Stream.hxx>
#include <TopLoc_Datum3D.ixx>
//=======================================================================
//function : TopLoc_Datum3D
//purpose : Identity
//=======================================================================
TopLoc_Datum3D::TopLoc_Datum3D ()
{
}
//=======================================================================
//function : TopLoc_Datum3D
//purpose :
//=======================================================================
TopLoc_Datum3D::TopLoc_Datum3D (const gp_Trsf& T) :
myTrsf(T)
{
}
//=======================================================================
//function : ShallowDump
//purpose :
//=======================================================================
void TopLoc_Datum3D::ShallowDump(Standard_OStream& S) const
{
S << " TopLoc_Datum3D " << (void*)this << endl;
Standard_Integer i;
gp_Trsf T = myTrsf;
for (i = 1; i<=3; i++) {
S<<" ( "<<setw(10)<<T.Value(i,1);
S<<","<<setw(10)<<T.Value(i,2);
S<<","<<setw(10)<<T.Value(i,3);
S<<","<<setw(10)<<T.Value(i,4);
S<<")\n";
}
S << endl;
}
|