0030895: Coding Rules - specify std namespace explicitly for std::cout and streams
[occt.git] / src / HLRTest / HLRTest_Projector.cxx
1 // Created on: 1995-04-05
2 // Created by: Christophe MARION
3 // Copyright (c) 1995-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17
18 #include <Draw_Display.hxx>
19 #include <Draw_Drawable3D.hxx>
20 #include <HLRAlgo_Projector.hxx>
21 #include <HLRTest_Projector.hxx>
22 #include <Standard_Stream.hxx>
23 #include <Standard_Type.hxx>
24
25 IMPLEMENT_STANDARD_RTTIEXT(HLRTest_Projector,Draw_Drawable3D)
26
27 //=======================================================================
28 //function : HLRTest_Projector
29 //purpose  : 
30 //=======================================================================
31 HLRTest_Projector::HLRTest_Projector (const HLRAlgo_Projector& P) :
32 myProjector(P)
33 {
34 }
35
36 //=======================================================================
37 //function : DrawOn
38 //purpose  : 
39 //=======================================================================
40
41 void HLRTest_Projector::DrawOn (Draw_Display&) const 
42 {
43 }
44
45 //=======================================================================
46 //function : Copy
47 //purpose  : 
48 //=======================================================================
49
50 Handle(Draw_Drawable3D) HLRTest_Projector::Copy () const 
51 {
52   return new HLRTest_Projector(myProjector);
53 }
54
55 //=======================================================================
56 //function : Dump
57 //purpose  : 
58 //=======================================================================
59
60 void HLRTest_Projector::Dump (Standard_OStream& S) const 
61 {
62   S << "Projector : \n";
63   if (myProjector.Perspective())
64     S << "perspective, focal = " << myProjector.Focus() << "\n";
65
66   for (Standard_Integer i = 1; i <= 3; i++) {
67
68     for (Standard_Integer j = 1; j <= 4; j++) {
69       S << std::setw(15) << myProjector.Transformation().Value(i,j);
70     }
71     S << "\n";
72   }
73   S << std::endl;
74 }
75
76 //=======================================================================
77 //function : Whatis
78 //purpose  : 
79 //=======================================================================
80
81 void HLRTest_Projector::Whatis (Draw_Interpretor& I) const 
82 {
83   I << "projector";
84 }
85