56 lines
1.5 KiB
C++
56 lines
1.5 KiB
C++
// Filename: lineEmitter.h
|
|
// Created by: charles (22Jun00)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// 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."
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef LINEEMITTER_H
|
|
#define LINEEMITTER_H
|
|
|
|
#include "baseParticleEmitter.h"
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : LineEmitter
|
|
// Description : Describes a linear region in which
|
|
// particles are generated.
|
|
////////////////////////////////////////////////////////////////////
|
|
class EXPCL_PANDAPHYSICS LineEmitter : public BaseParticleEmitter {
|
|
PUBLISHED:
|
|
LineEmitter();
|
|
LineEmitter(const LineEmitter ©);
|
|
virtual ~LineEmitter();
|
|
|
|
virtual BaseParticleEmitter *make_copy();
|
|
|
|
INLINE void set_endpoint1(const LPoint3& point);
|
|
INLINE void set_endpoint2(const LPoint3& point);
|
|
|
|
INLINE LPoint3 get_endpoint1() const;
|
|
INLINE LPoint3 get_endpoint2() const;
|
|
|
|
virtual void output(ostream &out) const;
|
|
virtual void write(ostream &out, int indent=0) const;
|
|
|
|
private:
|
|
LPoint3 _endpoint1;
|
|
LPoint3 _endpoint2;
|
|
|
|
// CUSTOM EMISSION PARAMETERS
|
|
// none
|
|
|
|
virtual void assign_initial_position(LPoint3& pos);
|
|
virtual void assign_initial_velocity(LVector3& vel);
|
|
};
|
|
|
|
#include "lineEmitter.I"
|
|
|
|
#endif // LINEEMITTER_H
|