25 lines
748 B
Plaintext
25 lines
748 B
Plaintext
// Filename: pointEmitter.I
|
|
// Created by: charles (26Jun00)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function : set_point
|
|
// Access : public
|
|
// Description : point setting
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE void PointEmitter::
|
|
set_point(const LPoint3f& p) {
|
|
_point = p;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function : set_launch_vec
|
|
// Access : public
|
|
// Description : launch_vec setting
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE void PointEmitter::
|
|
set_launch_vec(const LVector3f &v) {
|
|
_launch_vec = v;
|
|
}
|