// @(#)root/eve:$Id$ // Authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007 /************************************************************************* * Copyright (C) 1995-2007, 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_TEvePolygonSetProjected #define ROOT_TEvePolygonSetProjected #include "TEveVector.h" #include "TEveShape.h" class TBuffer3D; class TEvePolygonSetProjected : public TEveShape, public TEveProjected { friend class TEvePolygonSetProjectedGL; friend class TEvePolygonSetProjectedEditor; private: TEvePolygonSetProjected(const TEvePolygonSetProjected&); // Not implemented TEvePolygonSetProjected& operator=(const TEvePolygonSetProjected&); // Not implemented protected: struct Polygon_t { Int_t fNPnts; // number of points Int_t* fPnts; // point indices Polygon_t() : fNPnts(0), fPnts(0) {} virtual ~Polygon_t() { delete [] fPnts; fNPnts=0; fPnts=0; } Polygon_t& operator=(const Polygon_t& x) { fNPnts = x.fNPnts; fPnts = x.fPnts; return *this; } Int_t FindPoint(Int_t pi) { for (Int_t i=0; i vpPolygon_t; typedef vpPolygon_t::iterator vpPolygon_i; typedef vpPolygon_t::const_iterator vpPolygon_ci; private: TBuffer3D* fBuff; // buffer of projectable object Bool_t IsFirstIdxHead(Int_t s0, Int_t s1); Float_t AddPolygon(std::list >& pp, std::list >& p); Int_t* ProjectAndReducePoints(); Float_t MakePolygonsFromBP(Int_t* idxMap); Float_t MakePolygonsFromBS(Int_t* idxMap); protected: vpPolygon_t fPols; // polygons vpPolygon_t fPolsBS; // polygons build from TBuffer3D segments vpPolygon_t fPolsBP; // polygons build from TBuffer3D polygons Int_t fNPnts; // number of reduced and projected points TEveVector* fPnts; // reduced and projected points virtual void SetDepthLocal(Float_t d); Float_t PolygonSurfaceXY(const Polygon_t& poly) const; public: TEvePolygonSetProjected(const char* n="TEvePolygonSetProjected", const char* t=""); virtual ~TEvePolygonSetProjected(); virtual void ComputeBBox(); virtual void SetProjection(TEveProjectionManager* mng, TEveProjectable* model); virtual void UpdateProjection(); virtual TEveElement* GetProjectedAsElement() { return this; } void ProjectBuffer3D(); virtual void DumpPolys() const; void DumpBuffer3D(); ClassDef(TEvePolygonSetProjected,0); // Set of projected polygons with outline; typically produced from a TBuffer3D. }; #endif