// @(#)root/g3d:$Name: $:$Id: TShape.cxx,v 1.9 2005/09/04 14:53:18 brun Exp $
// Author: Nenad Buncic 17/09/95
/*************************************************************************
* 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. *
*************************************************************************/
#include "TNode.h"
#include "TShape.h"
#include "TView.h"
#include "TVirtualPad.h"
#include "TGeometry.h"
#include "TMaterial.h"
#include "TFile.h"
#include "TBuffer3D.h"
#include "TBuffer3DTypes.h"
#include <assert.h>
ClassImp(TShape)
//______________________________________________________________________________
//
// This is the base class for all geometry shapes.
// The list of shapes currently supported correspond to the shapes
// in Geant version 3:
// TBRIK,TCONE,TCONS,TGTRA,TPARA,TPCON,TPGON
// ,TTRAP,TTRD1,TTRD2,THYPE, TTUBE and TTUBS.
//
// The figure below shows instances of all these shapes. This figure
// is generated by the ROOT 3-D viewer.
//
/*
*/
//
//
/*
*/
//
//
//______________________________________________________________________________
TShape::TShape()
{
// Shape default constructor
fVisibility = 1;
fMaterial = 0;
}
//______________________________________________________________________________
TShape::TShape(const char *name,const char *title, const char *materialname)
: TNamed (name, title), TAttLine(), TAttFill()
{
// Shape normal constructor
fVisibility = 1;
if (!gGeometry) gGeometry = new TGeometry("Geometry","Default Geometry");
fMaterial = gGeometry->GetMaterial(materialname);
fNumber = gGeometry->GetListOfShapes()->GetSize();
gGeometry->GetListOfShapes()->Add(this);
#ifdef WIN32
// The color "1" - default produces a very bad 3D image with OpenGL
Color_t lcolor = 16;
SetLineColor(lcolor);
#endif
}
//______________________________________________________________________________
TShape::~TShape()
{
// Shape default destructor
if (gGeometry) gGeometry->GetListOfShapes()->Remove(this);
}
//______________________________________________________________________________
Int_t TShape::ShapeDistancetoPrimitive(Int_t numPoints, Int_t px, Int_t py)
{
Int_t dist = 9999;
TView *view = gPad->GetView();
if (!(numPoints && view)) return dist;
Double_t *points = new Double_t[3*numPoints];
SetPoints(points);
Double_t dpoint2, x1, y1, xndc[3];
for (Int_t i = 0; i < numPoints; i++) {
if (gGeometry) gGeometry->Local2Master(&points[3*i],&points[3*i]);
view->WCtoNDC(&points[3*i], xndc);
x1 = gPad->XtoAbsPixel(xndc[0]);
y1 = gPad->YtoAbsPixel(xndc[1]);
dpoint2= (px-x1)*(px-x1) + (py-y1)*(py-y1);
if (dpoint2 < dist) dist = (Int_t)dpoint2;
}
delete [] points;
return Int_t(TMath::Sqrt(Float_t(dist)));
}
//______________________________________________________________________________
void TShape::Paint(Option_t *)
{
AbstractMethod("TShape::Paint(Option_t *)");
}
//______________________________________________________________________________
void TShape::SetPoints(Double_t *) const
{
AbstractMethod("SetPoints(Double_t *buffer) const");
}
//______________________________________________________________________________
void TShape::Streamer(TBuffer &R__b)
{
// Stream an object of class TShape.
if (R__b.IsReading()) {
UInt_t R__s, R__c;
Version_t R__v = R__b.ReadVersion(&R__s, &R__c);
if (R__v > 1) {
TShape::Class()->ReadBuffer(R__b, this, R__v, R__s, R__c);
return;
}
//====process old versions before automatic schema evolution
TNamed::Streamer(R__b);
TAttLine::Streamer(R__b);
TAttFill::Streamer(R__b);
TFile *file = (TFile*)R__b.GetParent();
if (file) {
if (file->GetVersion() > 22300) TAtt3D::Streamer(R__b);
} else {
TAtt3D::Streamer(R__b);
}
R__b >> fNumber;
R__b >> fVisibility;
R__b >> fMaterial;
R__b.CheckByteCount(R__s, R__c, TShape::IsA());
//====end of old versions
} else {
TShape::Class()->WriteBuffer(R__b,this);
}
}
//_____________________________________________________________________________
void TShape::TransformPoints(Double_t *points, UInt_t NbPnts) const
{
// Tranform points (LocalToMaster)
if (gGeometry && points) {
Double_t dlocal[3];
Double_t dmaster[3];
for (UInt_t j=0; j<NbPnts; j++) {
dlocal[0] = points[3*j];
dlocal[1] = points[3*j+1];
dlocal[2] = points[3*j+2];
gGeometry->Local2Master(&dlocal[0],&dmaster[0]);
points[3*j] = dmaster[0];
points[3*j+1] = dmaster[1];
points[3*j+2] = dmaster[2];
}
}
}
//_____________________________________________________________________________
void TShape::FillBuffer3D(TBuffer3D & buffer, Int_t reqSections) const
{
// We have to set kRawSize (unless already done) to allocate buffer space
// before kRaw can be filled
if (reqSections & TBuffer3D::kRaw)
{
if (!(reqSections & TBuffer3D::kRawSizes) && !buffer.SectionsValid(TBuffer3D::kRawSizes))
{
assert(kFALSE);
}
}
if (reqSections & TBuffer3D::kCore) {
buffer.ClearSectionsValid();
buffer.fID = const_cast<TShape *>(this);
buffer.fColor = GetLineColor();
buffer.fTransparency = 0;
buffer.fLocalFrame = kFALSE; // Only support master frame for these shapes
buffer.fReflection = kFALSE;
buffer.SetLocalMasterIdentity();
buffer.SetSectionsValid(TBuffer3D::kCore);
}
}
//_____________________________________________________________________________
Int_t TShape::GetBasicColor() const
{
Int_t basicColor = ((GetLineColor() %8) -1) * 4;
if (basicColor < 0) basicColor = 0;
return basicColor;
}
//_____________________________________________________________________________
const TBuffer3D &TShape::GetBuffer3D(Int_t /* reqSections */ ) const
{
// Stub to avoid forcing implementation at this stage
static TBuffer3D buffer(TBuffer3DTypes::kGeneric);
Warning("GetBuffer3D", "this must be implemented for shapes in a TNode::Paint hierarchy. This will become a pure virtual fn eventually.");
return buffer;
}
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.