blob: b088ad26ce392ee71b323fd313f1b15855ad5fff (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
// File: HLRTest_Projector.cxx
// Created: Wed Apr 5 16:58:12 1995
// Author: Christophe MARION
// <cma@ecolox>
#include <Standard_Stream.hxx>
#include <HLRTest_Projector.ixx>
//=======================================================================
//function : HLRTest_Projector
//purpose :
//=======================================================================
HLRTest_Projector::HLRTest_Projector (const HLRAlgo_Projector& P) :
myProjector(P)
{
}
//=======================================================================
//function : DrawOn
//purpose :
//=======================================================================
void HLRTest_Projector::DrawOn (Draw_Display&) const
{
}
//=======================================================================
//function : Copy
//purpose :
//=======================================================================
Handle(Draw_Drawable3D) HLRTest_Projector::Copy () const
{
return new HLRTest_Projector(myProjector);
}
//=======================================================================
//function : Dump
//purpose :
//=======================================================================
void HLRTest_Projector::Dump (Standard_OStream& S) const
{
S << "Projector : \n";
if (myProjector.Perspective())
S << "perspective, focal = " << myProjector.Focus() << "\n";
for (Standard_Integer i = 1; i <= 3; i++) {
for (Standard_Integer j = 1; j <= 4; j++) {
S << setw(15) << myProjector.Transformation().Value(i,j);
}
S << "\n";
}
S << endl;
}
//=======================================================================
//function : Whatis
//purpose :
//=======================================================================
void HLRTest_Projector::Whatis (Draw_Interpretor& I) const
{
I << "projector";
}
|