OSG  3.4.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SectorPlacer.h
Go to the documentation of this file.
1 /* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
2  *
3  * This library is open source and may be redistributed and/or modified under
4  * the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
5  * (at your option) any later version. The full license is in LICENSE file
6  * included with this distribution, and on the openscenegraph.org website.
7  *
8  * This library is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * OpenSceneGraph Public License for more details.
12 */
13 //osgParticle - Copyright (C) 2002 Marco Jez
14 
15 #ifndef OSGPARTICLE_SECTOR_PLACER
16 #define OSGPARTICLE_SECTOR_PLACER 1
17 
18 #include <osgParticle/CenteredPlacer>
19 #include <osgParticle/Particle>
20 #include <osgParticle/range>
21 
22 #include <osg/CopyOp>
23 #include <osg/Object>
24 #include <osg/Vec3>
25 #include <osg/Math>
26 
27 namespace osgParticle
28 {
29 
36  class SectorPlacer: public CenteredPlacer {
37  public:
38  inline SectorPlacer();
39  inline SectorPlacer(const SectorPlacer& copy, const osg::CopyOp& copyop = osg::CopyOp::SHALLOW_COPY);
40 
42  inline const rangef& getRadiusRange() const;
43 
45  inline void setRadiusRange(const rangef& r);
46 
48  inline void setRadiusRange(float r1, float r2);
49 
51  inline const rangef& getPhiRange() const;
52 
54  inline void setPhiRange(const rangef& r);
55 
57  inline void setPhiRange(float r1, float r2);
58 
60 
62  inline void place(Particle* P) const;
63 
65  inline float volume() const;
66 
68  inline osg::Vec3 getControlPosition() const;
69 
70  protected:
71  virtual ~SectorPlacer() {}
72  SectorPlacer& operator=(const SectorPlacer&) { return *this; }
73 
74  private:
75  rangef _rad_range;
76  rangef _phi_range;
77  };
78 
79  // INLINE FUNCTIONS
80 
82  : CenteredPlacer(), _rad_range(0, 1), _phi_range(0, osg::PI*2)
83  {
84  }
85 
86  inline SectorPlacer::SectorPlacer(const SectorPlacer& copy, const osg::CopyOp& copyop)
87  : CenteredPlacer(copy, copyop), _rad_range(copy._rad_range), _phi_range(copy._phi_range)
88  {
89  }
90 
91  inline const rangef& SectorPlacer::getRadiusRange() const
92  {
93  return _rad_range;
94  }
95 
96  inline const rangef& SectorPlacer::getPhiRange() const
97  {
98  return _phi_range;
99  }
100 
101  inline void SectorPlacer::setRadiusRange(const rangef& r)
102  {
103  _rad_range = r;
104  }
105 
106  inline void SectorPlacer::setRadiusRange(float r1, float r2)
107  {
108  _rad_range.minimum = r1;
109  _rad_range.maximum = r2;
110  }
111 
112  inline void SectorPlacer::setPhiRange(const rangef& r)
113  {
114  _phi_range = r;
115  }
116 
117  inline void SectorPlacer::setPhiRange(float r1, float r2)
118  {
119  _phi_range.minimum = r1;
120  _phi_range.maximum = r2;
121  }
122 
123  inline void SectorPlacer::place(Particle* P) const
124  {
125  float rad = _rad_range.get_random_sqrtf();
126  float phi = _phi_range.get_random();
127 
128  osg::Vec3 pos(
129  getCenter().x() + rad * cosf(phi),
130  getCenter().y() + rad * sinf(phi),
131  getCenter().z());
132 
133  P->setPosition(pos);
134  }
135 
136  inline float SectorPlacer::volume() const
137  {
138  return 0.5f * (_phi_range.maximum - _phi_range.minimum) *
139  (_rad_range.maximum*_rad_range.maximum - _rad_range.minimum*_rad_range.minimum);
140  }
141 
143  {
144  return getCenter();
145  }
146 
147 }
148 
149 #endif
const rangef & getRadiusRange() const
Get the range of possible values for radius.
Definition: SectorPlacer.h:91
osg::Vec3 getControlPosition() const
return the control position
Definition: SectorPlacer.h:142
void setPosition(const osg::Vec3 &p)
Set the position vector.
Definition: Particle.h:497
ValueType maximum
Higher bound.
Definition: range.h:45
const rangef & getPhiRange() const
Get the range of possible values for the central angle.
Definition: SectorPlacer.h:96
ValueType get_random() const
Get a random value between min and max.
Definition: range.h:57
META_Object(osgParticle, SectorPlacer)
void place(Particle *P) const
Place a particle. Do not call it manually.
Definition: SectorPlacer.h:123
float volume() const
return the area of the sector
Definition: SectorPlacer.h:136
ValueType get_random_sqrtf() const
Get a random square root value between min and max.
Definition: range.h:63
const double PI
Definition: Math.h:30
const osg::Vec3 & getCenter() const
Get the center point.
Definition: AlphaFunc.h:19
void setPhiRange(const rangef &r)
Set the range of possible values for the central angle.
Definition: SectorPlacer.h:112
ValueType minimum
Lower bound.
Definition: range.h:42
void setRadiusRange(const rangef &r)
Set the range of possible values for radius.
Definition: SectorPlacer.h:101
SectorPlacer & operator=(const SectorPlacer &)
Definition: SectorPlacer.h:72