// @(#)root/base:$Id: TAttBBox.cxx 20877 2007-11-19 11:17:07Z rdm $ // Author: Matevz Tadel 7/4/2006 /************************************************************************* * Copyright (C) 1995-2006, Rene Brun and Fons Rademakers. * * All rights reserved. * * * * For the licensing terms see $ROOTSYS/LICENSE. * * For the list of contributors see $ROOTSYS/README/CREDITS. * *************************************************************************/ #include "TAttBBox.h" //______________________________________________________________________ // TAttBBox // // Helper for management of bounding-box information. // Optionally used by classes that use direct OpenGL rendering // via <Class>GL class. ClassImp(TAttBBox) //______________________________________________________________________________ void TAttBBox::BBoxInit(Float_t infinity) { // Allocate and prepare for incremental filling. if (fBBox == 0) fBBox = new Float_t[6]; fBBox[0] = infinity; fBBox[1] = -infinity; fBBox[2] = infinity; fBBox[3] = -infinity; fBBox[4] = infinity; fBBox[5] = -infinity; } //______________________________________________________________________________ void TAttBBox::BBoxZero(Float_t epsilon, Float_t x, Float_t y, Float_t z) { // Create cube of volume (2*epsiolon)^3 at (x,y,z). // epsilon iz zero by default. if (fBBox == 0) fBBox = new Float_t[6]; fBBox[0] = x - epsilon; fBBox[1] = x + epsilon; fBBox[2] = y - epsilon; fBBox[3] = y + epsilon; fBBox[4] = z - epsilon; fBBox[5] = z + epsilon; } //______________________________________________________________________________ void TAttBBox::BBoxClear() { // Remove BBox information. delete [] fBBox; fBBox = 0; } //______________________________________________________________________________ void TAttBBox::AssertBBoxExtents(Float_t epsilon) { // Assert extents of all sides of the bounding-box are at least epsilon. for (Int_t i=0; i<6; i+=2) { if (fBBox[i+1] - fBBox[i] < epsilon) { Float_t b = 0.5*(fBBox[i] + fBBox[i+1]); fBBox[i] = b - 0.5*epsilon; fBBox[i+1] = b + 0.5*epsilon; } } }