35 #ifndef HEPVis_SoTubs_h
36 #define HEPVis_SoTubs_h
38 #include <Inventor/fields/SoSFFloat.h>
39 #include <Inventor/fields/SoSFNode.h>
40 #include <Inventor/fields/SoSFBool.h>
41 #include <Inventor/nodes/SoShape.h>
69 #define SoTubs Geant4_SoTubs
132 virtual void computeBBox(SoAction *action, SbBox3f &
box, SbVec3f ¢er );
173 void inc(
double & sinPhi,
double & cosPhi,
double sinDeltaPhi,
double cosDeltaPhi)
const {
174 double oldSin=sinPhi,oldCos=cosPhi;
175 sinPhi = oldSin*cosDeltaPhi+oldCos*sinDeltaPhi;
176 cosPhi = oldCos*cosDeltaPhi-oldSin*sinDeltaPhi;