Panda3D
Loading...
Searching...
No Matches
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 */
17void OrientedParticleFactory::
18set_initial_orientation(const LOrientation &o) {
19 _initial_orientation = o;
20}
21
22/**
23
24 */
25void OrientedParticleFactory::
26set_final_orientation(const LOrientation &o) {
27 _final_orientation = o;
28}
29
30/**
31
32 */
33LOrientation OrientedParticleFactory::
34get_initial_orientation() const {
35 return _initial_orientation;
36}
37
38/**
39
40 */
41LOrientation OrientedParticleFactory::
42get_final_orientation() const {
43 return _final_orientation;
44}