#ifndef ROOT_TPointSet3D
#define ROOT_TPointSet3D
#ifndef ROOT_TPolyMarker3D
#include "TPolyMarker3D.h"
#endif
#ifndef ROOT_TAttBBox
#include "TAttBBox.h"
#endif
class TPointSet3D : public TPolyMarker3D, public TAttBBox
{
protected:
public:
TPointSet3D() :
TPolyMarker3D() {}
TPointSet3D(Int_t n, Marker_t marker=1, Option_t *option="") :
TPolyMarker3D(n, marker, option) {}
TPointSet3D(Int_t n, Float_t *p, Marker_t marker=1, Option_t *option="") :
TPolyMarker3D(n, p, marker, option) {}
TPointSet3D(Int_t n, Double_t *p, Marker_t marker=1, Option_t *option="") :
TPolyMarker3D(n, p, marker, option) {}
TPointSet3D(const TPointSet3D &polymarker) :
TPolyMarker3D(polymarker), TAttBBox() {}
virtual ~TPointSet3D() {}
virtual void ComputeBBox();
ClassDef(TPointSet3D,1)
};
#endif
ROOT page - Class index - Class Hierarchy - Top of the page
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.