51 lines
1.2 KiB
C
51 lines
1.2 KiB
C
|
/**
|
||
|
* PANDA 3D SOFTWARE
|
||
|
* Copyright (c) Carnegie Mellon University. All rights reserved.
|
||
|
*
|
||
|
* All use of this software is subject to the terms of the revised BSD
|
||
|
* license. You should have received a copy of this license along
|
||
|
* with this source code in a file named "LICENSE."
|
||
|
*
|
||
|
* @file arcEmitter.h
|
||
|
* @author charles
|
||
|
* @date 2000-06-22
|
||
|
*/
|
||
|
|
||
|
#ifndef ARCEMITTER_H
|
||
|
#define ARCEMITTER_H
|
||
|
|
||
|
#include "ringEmitter.h"
|
||
|
|
||
|
/**
|
||
|
* Describes a planar ring region in which particles are generated.
|
||
|
*/
|
||
|
class EXPCL_PANDA_PARTICLESYSTEM ArcEmitter : public RingEmitter {
|
||
|
PUBLISHED:
|
||
|
ArcEmitter();
|
||
|
ArcEmitter(const ArcEmitter ©);
|
||
|
virtual ~ArcEmitter();
|
||
|
|
||
|
virtual BaseParticleEmitter *make_copy();
|
||
|
|
||
|
INLINE void set_start_angle(PN_stdfloat angle);
|
||
|
INLINE void set_end_angle(PN_stdfloat angle);
|
||
|
INLINE void set_arc(PN_stdfloat startAngle, PN_stdfloat endAngle);
|
||
|
|
||
|
INLINE PN_stdfloat get_start_angle();
|
||
|
INLINE PN_stdfloat get_end_angle();
|
||
|
|
||
|
virtual void output(std::ostream &out) const;
|
||
|
virtual void write(std::ostream &out, int indent=0) const;
|
||
|
|
||
|
private:
|
||
|
// our emitter limits
|
||
|
PN_stdfloat _start_theta;
|
||
|
PN_stdfloat _end_theta;
|
||
|
|
||
|
virtual void assign_initial_position(LPoint3& pos);
|
||
|
};
|
||
|
|
||
|
#include "arcEmitter.I"
|
||
|
|
||
|
#endif // ARCEMITTER_H
|