List of all members.
| 
Public Member Functions | 
|  | bw (float a_mean=0, float a_gamma=1) | 
|  | bw (const bw &a_from) | 
| bw & | operator= (const bw &a_from) | 
| float | shoot () const | 
Detailed Description
Definition at line 54 of file randf.
 
Constructor & Destructor Documentation
      
        
          | inlib::randf::bw::bw | ( | float | a_mean = 0, | 
        
          |  |  | float | a_gamma = 1 | 
        
          |  | ) |  |  [inline] | 
      
 
Definition at line 56 of file randf.
  :m_mean(a_mean),m_gamma(a_gamma){}
 
 
      
        
          | inlib::randf::bw::bw | ( | const bw & | a_from | ) |  [inline] | 
      
 
Definition at line 59 of file randf.
  :m_mean(a_from.m_mean),m_gamma(a_from.m_gamma){}
 
 
Member Function Documentation
      
        
          | bw& inlib::randf::bw::operator= | ( | const bw & | a_from | ) |  [inline] | 
      
 
Definition at line 61 of file randf.
                                  {
    m_mean = a_from.m_mean;
    m_gamma = a_from.m_gamma;
    return *this;
  }
 
 
      
        
          | float inlib::randf::bw::shoot | ( |  | ) | const  [inline] | 
      
 
Definition at line 67 of file randf.
                      {
    float rval = 2 * m_flat.shoot() - 1;
    float displ = 0.5f * m_gamma * ftan(rval * fhalf_pi());
    return m_mean + displ;
  }
 
 
The documentation for this class was generated from the following file:
- /Users/barrand/private/dev/softinex/old/inexlib-1.2/inlib/inlib/randf