open_toontown_panda3d/panda/src/particlesystem/pointEmitter.I

20 lines
519 B
Plaintext

// Filename: pointEmitter.I
// Created by: charles (26Jun00)
//
////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////
// Function : set_point
// Access : public
// Description : point setting
////////////////////////////////////////////////////////////////////
INLINE void PointEmitter::
set_location(const LPoint3f& p) {
_location = p;
}
INLINE LPoint3f PointEmitter::
get_location(void) const {
return _location;
}