60 lines
1.8 KiB
C++
60 lines
1.8 KiB
C++
// Filename: rectangleEmitter.h
|
|
// Created by: charles (22Jun00)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) 2001 - 2004, Disney Enterprises, Inc. All rights reserved
|
|
//
|
|
// All use of this software is subject to the terms of the Panda 3d
|
|
// Software license. You should have received a copy of this license
|
|
// along with this source code; you will also find a current copy of
|
|
// the license at http://etc.cmu.edu/panda3d/docs/license/ .
|
|
//
|
|
// To contact the maintainers of this program write to
|
|
// panda3d-general@lists.sourceforge.net .
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef RECTANGLEEMITTER_H
|
|
#define RECTANGLEEMITTER_H
|
|
|
|
#include "baseParticleEmitter.h"
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : RectangleEmitter
|
|
// Description : Describes a planar square region in which
|
|
// particles are generated.
|
|
////////////////////////////////////////////////////////////////////
|
|
class EXPCL_PANDAPHYSICS RectangleEmitter : public BaseParticleEmitter {
|
|
PUBLISHED:
|
|
RectangleEmitter();
|
|
RectangleEmitter(const RectangleEmitter ©);
|
|
virtual ~RectangleEmitter();
|
|
|
|
virtual BaseParticleEmitter *make_copy();
|
|
|
|
INLINE void set_min_bound(const LPoint2f& vmin);
|
|
INLINE void set_max_bound(const LPoint2f& vmax);
|
|
|
|
INLINE LPoint2f get_min_bound() const;
|
|
INLINE LPoint2f get_max_bound() const;
|
|
|
|
virtual void output(ostream &out) const;
|
|
virtual void write(ostream &out, int indent=0) const;
|
|
|
|
private:
|
|
LPoint2f _vmin;
|
|
LPoint2f _vmax;
|
|
|
|
// CUSTOM EMISSION PARAMETERS
|
|
// none
|
|
|
|
virtual void assign_initial_position(LPoint3f& pos);
|
|
virtual void assign_initial_velocity(LVector3f& vel);
|
|
};
|
|
|
|
#include "rectangleEmitter.I"
|
|
|
|
#endif // RECTANGLEEMITTER_H
|