33 lines
919 B
C++
33 lines
919 B
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: G4BSplineSurfaceWithKnots.hh,v 1.2 2000/08/28 08:57:42 gcosmo Exp $
|
|
// GEANT4 tag $Name: geant4-03-00 $
|
|
//
|
|
// ----------------------------------------------------------------------
|
|
// Class G4BSplineSurfaceWithKnots
|
|
//
|
|
// Class description:
|
|
//
|
|
// Definition of a generic BSpline surface with knots.
|
|
// *** NOT implemented yet ***
|
|
|
|
// Authors: J.Sulkimo, P.Urban.
|
|
// Revisions by: L.Broglia, G.Cosmo.
|
|
// ----------------------------------------------------------------------
|
|
#ifndef __B_SPLINESURFACEWITHKNOTS_H
|
|
#define __B_SPLINESURFACEWITHKNOTS_H
|
|
|
|
#include "G4BSplineSurface.hh"
|
|
|
|
|
|
class G4BSplineSurfaceWithKnots : public G4BSplineSurface
|
|
{
|
|
};
|
|
|
|
#endif
|