// @(#)root/hist:$Id: TGraphDelaunay2D.h,v 1.00 // Author: Olivier Couet, Luke Jones (Royal Holloway, University of London) /************************************************************************* * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. * * All rights reserved. * * * * For the licensing terms see $ROOTSYS/LICENSE. * * For the list of contributors see $ROOTSYS/README/CREDITS. * *************************************************************************/ #ifndef ROOT_TGraphDelaunay2D #define ROOT_TGraphDelaunay2D ////////////////////////////////////////////////////////////////////////// // // // TGraphDelaunay2D // // // // This class uses the Delaunay triangles technique to interpolate and // // render the data set. // // // ////////////////////////////////////////////////////////////////////////// #include "TNamed.h" #include "Math/Delaunay2D.h" class TGraph2D; class TView; class TGraphDelaunay2D : public TNamed { public: private: TGraphDelaunay2D(const TGraphDelaunay2D&) = delete; TGraphDelaunay2D& operator=(const TGraphDelaunay2D&) = delete; protected: TGraph2D *fGraph2D; ///