Geant4  v4-10.4-release
 모두 클래스 네임스페이스들 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 Friends 매크로 그룹들 페이지들
SoCons.h
이 파일의 문서화 페이지로 가기
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
10 // * *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
17 // * *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
25 //
26 //
27 // $Id: SoCons.h 66373 2012-12-18 09:41:34Z gcosmo $
28 //
29 /*-----------------------------Hepvis----------------------------------------*/
30 /* */
31 /* Node: SoCons */
32 /* Description: Represents the G4Cons Geant Geometry entity */
33 /* Author: Joe Boudreau Nov 11 1996 */
34 /* */
35 /*---------------------------------------------------------------------------*/
36 #ifndef HEPVis_SoCons_h
37 #define HEPVis_SoCons_h
38 
39 #include <Inventor/fields/SoSFFloat.h>
40 #include <Inventor/fields/SoSFNode.h>
41 #include <Inventor/fields/SoSFBool.h>
42 #include <Inventor/nodes/SoShape.h>
43 
44 class SoSFNode;
46 
70 #define SoCons Geant4_SoCons
71 
72 class SoCons:public SoShape {
73 
74  // The following is required:
76 
77 public:
78 
79  //
81  //
82  SoSFFloat fRmin1;
83  //
85  //
86  SoSFFloat fRmin2;
87  //
89  //
90  SoSFFloat fRmax1;
91  //
93  //
94  SoSFFloat fRmax2;
95  //
97  //
98  SoSFFloat fDz;
99  //
101  //
102  SoSFFloat fSPhi;
103  //
105  //
106  SoSFFloat fDPhi;
107  //
109  //
110  SoSFBool smoothDraw;
111  //
113  //
114  SoSFNode alternateRep;
115 
116  //
118  //
119  SoCons();
120 
121  //
123  //
124  static void initClass();
125 
126  //
132  //
133  virtual void generateAlternateRep();
134 
135  //
137  //
138  virtual void clearAlternateRep();
139 
140 protected:
141 
142  //
144  //
145  virtual void computeBBox(SoAction *action, SbBox3f &box, SbVec3f &center );
146 
147  //
149  //
150  virtual void generatePrimitives(SoAction *action);
151 
152  //
154  //
155  virtual SoChildList *getChildren() const;
156 
157 
158 protected:
159  //
161  //
162  virtual ~SoCons();
163 
164 private:
165 
166  //
169  //
170  void generateChildren();
171 
172  //
175  //
176  void updateChildren();
177 
178  //
180  //
181  SoChildList *children;
182 
183  //
185  //
186  void inc(double & sinPhi, double & cosPhi, double sinDeltaPhi, double cosDeltaPhi) const {
187  double oldSin=sinPhi,oldCos=cosPhi;
188  sinPhi = oldSin*cosDeltaPhi+oldCos*sinDeltaPhi;
189  cosPhi = oldCos*cosDeltaPhi-oldSin*sinDeltaPhi;
190  }
191 };
192 
193 #endif
static void initClass()
Class Initializer, required.
SoSFFloat fRmax1
Outside radius at -fDz.
Definition: SoCons.h:90
SoSFFloat fSPhi
Starting angle, in radians.
Definition: SoCons.h:102
Definition: SoCons.h:72
virtual SoChildList * getChildren() const
GetChildList, required whenever the class has hidden children.
SoSFFloat fRmin2
Inside radius at +fDz.
Definition: SoCons.h:86
SoSFFloat fRmin1
Inside radius at -fDz.
Definition: SoCons.h:82
void updateChildren()
SoSFFloat fRmax2
Outside radius at +fDz.
Definition: SoCons.h:94
virtual void computeBBox(SoAction *action, SbBox3f &box, SbVec3f &center)
compute bounding Box, required
SoSFFloat fDPhi
Delta-angle, in radians.
Definition: SoCons.h:106
SO_NODE_HEADER(SoCons)
SoCons()
Constructor, required.
virtual ~SoCons()
Destructor, required.
virtual void generatePrimitives(SoAction *action)
Generate Primitives, required.
virtual void generateAlternateRep()
SoSFFloat fDz
Half-length along Z.
Definition: SoCons.h:98
virtual void clearAlternateRep()
We better be able to clear it, too!
SoChildList * children
ChildList. Required whenever the class has hidden children.
Definition: SoCons.h:181
void inc(double &sinPhi, double &cosPhi, double sinDeltaPhi, double cosDeltaPhi) const
help with trigonometry. increments sines an cosines by an angle.
Definition: SoCons.h:186
void generateChildren()
SoSFBool smoothDraw
An Inventor option - slightly better render, worse performance.
Definition: SoCons.h:110
SoSFNode alternateRep
Alternate rep required - for use by users without HEPVis shared objects.
Definition: SoCons.h:114