35 #ifndef HEPVis_SoCons_h
36 #define HEPVis_SoCons_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 SoCons Geant4_SoCons
144 virtual void computeBBox(SoAction *action, SbBox3f &
box, SbVec3f ¢er );
185 void inc(
double & sinPhi,
double & cosPhi,
double sinDeltaPhi,
double cosDeltaPhi)
const {
186 double oldSin=sinPhi,oldCos=cosPhi;
187 sinPhi = oldSin*cosDeltaPhi+oldCos*sinDeltaPhi;
188 cosPhi = oldCos*cosDeltaPhi-oldSin*sinDeltaPhi;