0024704: Visualization - inherit OpenGl_Structure from Graphic3d_CStructure
[occt.git] / src / Graphic3d / Graphic3d_Plotter.cxx
1 // Created on: 1997-04-21
2 // Created by: JLF, CAL
3 // Copyright (c) 1997-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 //-Version      
18
19 //-Design       Declaration des variables specifiques aux plotters
20
21 //-Warning      
22
23 //-References   
24
25 //-Language     C++ 2.0
26
27 //-Declarations
28
29 // for the class
30 #include <Graphic3d_Plotter.ixx>
31
32 //-Aliases
33
34 //-Global data definitions
35
36 //-Constructors
37
38 Graphic3d_Plotter::Graphic3d_Plotter ():
39 MyPlottingState (Standard_False) {
40
41 }
42
43 //-Destructors
44
45 void Graphic3d_Plotter::Destroy () {
46
47 }
48
49 //-Methods, in order
50
51 Standard_Boolean Graphic3d_Plotter::BeginPlot (const Handle(Graphic3d_DataStructureManager)& /*aProjector*/) {
52
53         if (MyPlottingState)
54                 Graphic3d_PlotterDefinitionError::Raise
55                         ("Graphic3d_Plotter::BeginPlot\n");
56
57         MyPlottingState = Standard_True;
58
59         Graphic3d_PlotterDefinitionError::Raise
60                 ("Graphic3d_Plotter::BeginPlot\n");
61
62         return MyPlottingState;
63
64 }
65
66 void Graphic3d_Plotter::EndPlot () {
67
68         if (! MyPlottingState)
69                 Graphic3d_PlotterDefinitionError::Raise
70                         ("Graphic3d_Plotter::EndPlot\n");
71
72         MyPlottingState = Standard_False;
73
74         Graphic3d_PlotterDefinitionError::Raise
75                 ("Graphic3d_Plotter::EndPlot\n");
76
77 }
78
79 Standard_Boolean Graphic3d_Plotter::PlottingState () const {
80
81         return (MyPlottingState);
82
83 }