Files
geant4/source/graphics_reps/include/G4NURBSbox.hh
T
2016-06-01 15:25:35 +02:00

35 lines
696 B
C++

// This code implementation is the intellectual property of
// the RD44 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: G4NURBSbox.hh,v 2.1 1998/07/12 02:59:11 urbi Exp $
// GEANT4 tag $Name: geant4-00 $
//
//
// Olivier Crumeyrolle 12 September 1996
// Box builder prototype
// OC 060996
#include "G4NURBS.hh"
#ifndef __C_G4NURBSbox__
#define __C_G4NURBSbox__ 1
class G4NURBSbox : public G4NURBS
{
public: G4NURBSbox(G4double DX, G4double DY, G4double DZ);
virtual const char* Whoami() const;
};
#endif
// end of __C_G4NURBSbox__