Panda3D
orientedParticleFactory.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 orientedParticleFactory.I
10  * @author charles
11  * @date 2000-08-16
12  */
13 
14 /**
15 
16  */
17 void OrientedParticleFactory::
18 set_initial_orientation(const LOrientation &o) {
19  _initial_orientation = o;
20 }
21 
22 /**
23 
24  */
25 void OrientedParticleFactory::
26 set_final_orientation(const LOrientation &o) {
27  _final_orientation = o;
28 }
29 
30 /**
31 
32  */
33 LOrientation OrientedParticleFactory::
34 get_initial_orientation() const {
35  return _initial_orientation;
36 }
37 
38 /**
39 
40  */
41 LOrientation OrientedParticleFactory::
42 get_final_orientation() const {
43  return _final_orientation;
44 }