Panda3D
 All Classes Functions Variables Enumerations
pointEmitter.I
1 // Filename: pointEmitter.I
2 // Created by: charles (26Jun00)
3 //
4 ////////////////////////////////////////////////////////////////////
5 //
6 // PANDA 3D SOFTWARE
7 // Copyright (c) Carnegie Mellon University. All rights reserved.
8 //
9 // All use of this software is subject to the terms of the revised BSD
10 // license. You should have received a copy of this license along
11 // with this source code in a file named "LICENSE."
12 //
13 ////////////////////////////////////////////////////////////////////
14 
15 ////////////////////////////////////////////////////////////////////
16 // Function : set_point
17 // Access : public
18 // Description : point setting
19 ////////////////////////////////////////////////////////////////////
20 INLINE void PointEmitter::
21 set_location(const LPoint3& p) {
22  _location = p;
23 }
24 
25 INLINE LPoint3 PointEmitter::
26 get_location() const {
27  return _location;
28 }
void set_location(const LPoint3 &p)
point setting
Definition: pointEmitter.I:21
This is a three-component point in space (as opposed to a three-component vector, which represents a ...
Definition: lpoint3.h:99