Files
geant4/source/visualization/VRML/include/G4VRML2FileViewer.hh
T
2016-06-08 15:28:20 +02:00

48 lines
1.2 KiB
C++

// This code implementation is the intellectual property of
// the GEANT4 collaboration.
//
// By copying, distributing or modifying the Program (or any work
// based on the Program) you indicate your acceptance of this statement,
// and all its terms.
//
// $Id: G4VRML2FileViewer.hh,v 1.3.8.1 1999/12/07 20:53:43 gunter Exp $
// GEANT4 tag $Name: geant4-01-00 $
//
// G4VRML2FileViewer.hh
// Satoshi Tanaka and Yasuhide Sawada
#ifdef G4VIS_BUILD_VRMLFILE_DRIVER
#ifndef G4VRML2FILE_VIEWER_HH
#define G4VRML2FILE_VIEWER_HH
#include <fstream.h>
#include "G4VViewer.hh"
#include "globals.hh"
class G4VRML2FileSceneHandler;
class G4VRML2FileViewer: public G4VViewer {
public:
G4VRML2FileViewer(G4VRML2FileSceneHandler& scene, const G4String& name = "");
virtual ~G4VRML2FileViewer();
void ClearView();
void DrawView();
void ShowView();
void FinishView();
private:
void SetView(); // Do nothing. SendViewParameters will do its job.
void SendViewParameters () ;
private:
G4VRML2FileSceneHandler& fSceneHandler; // Reference to Graphics Scene for this view.
ofstream& fDest ;
G4double fViewHalfAngle ;
G4double fsin_VHA ;
};
#endif //G4VRML2File_VIEW_HH
#endif //G4VIS_BUILD_VRMLFILE_DRIVER