Panda3D
boxEmitter.I
Go to the documentation of this file.
1 /**
2  * PANDA 3D SOFTWARE
3  * Copyright (c) Carnegie Mellon University. All rights reserved.
4  *
5  * All use of this software is subject to the terms of the revised BSD
6  * license. You should have received a copy of this license along
7  * with this source code in a file named "LICENSE."
8  *
9  * @file boxEmitter.I
10  * @author charles
11  * @date 2000-06-26
12  */
13 
14 /**
15  * boundary assignment
16  */
17 INLINE void BoxEmitter::
18 set_min_bound(const LPoint3& vmin) {
19  _vmin = vmin;
20 }
21 
22 /**
23  * boundary assignment
24  */
25 INLINE void BoxEmitter::
26 set_max_bound(const LPoint3& vmax) {
27  _vmax = vmax;
28 }
29 
30 /**
31  * boundary accessor
32  */
33 INLINE LPoint3 BoxEmitter::
34 get_min_bound() const {
35  return _vmin;
36 }
37 
38 /**
39  * boundary accessor
40  */
41 INLINE LPoint3 BoxEmitter::
42 get_max_bound() const {
43  return _vmax;
44 }
LPoint3 get_min_bound() const
boundary accessor
Definition: boxEmitter.I:34
LPoint3 get_max_bound() const
boundary accessor
Definition: boxEmitter.I:42
void set_max_bound(const LPoint3 &vmax)
boundary assignment
Definition: boxEmitter.I:26
void set_min_bound(const LPoint3 &vmin)
boundary assignment
Definition: boxEmitter.I:18