Panda3D
rectangleEmitter.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 rectangleEmitter.I
10  * @author charles
11  * @date 2000-06-26
12  */
13 
14 /**
15  * boundary set
16  */
17 INLINE void RectangleEmitter::
18 set_min_bound(const LPoint2& vmin) {
19  _vmin = vmin;
20 }
21 
22 /**
23  * boundary set
24  */
25 INLINE void RectangleEmitter::
26 set_max_bound(const LPoint2& vmax) {
27  _vmax = vmax;
28 }
29 
30 /**
31  * boundary get
32  */
33 INLINE LPoint2 RectangleEmitter::
34 get_min_bound() const {
35  return _vmin;
36 }
37 
38 /**
39  * boundary get
40  */
41 INLINE LPoint2 RectangleEmitter::
42 get_max_bound() const {
43  return _vmax;
44 }
LPoint2 get_min_bound() const
boundary get
void set_min_bound(const LPoint2 &vmin)
boundary set
LPoint2 get_max_bound() const
boundary get
void set_max_bound(const LPoint2 &vmax)
boundary set