Panda3D
movingPartMatrix.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 movingPartMatrix.I
10  * @author drose
11  * @date 1999-02-23
12  */
13 
14 /**
15  * Normally, you'd use make_copy() or copy_subgraph() to make a copy of this.
16  */
17 INLINE MovingPartMatrix::
18 MovingPartMatrix(const MovingPartMatrix &copy) :
20 {
21 }
22 
23 /**
24  *
25  */
26 INLINE MovingPartMatrix::
27 MovingPartMatrix(PartGroup *parent, const std::string &name,
28  const LMatrix4 &default_value)
29  : MovingPart<ACMatrixSwitchType>(parent, name, default_value) {
30 }
31 
32 /**
33  *
34  */
35 INLINE MovingPartMatrix::
36 MovingPartMatrix() {
37 }
This is the template instantiation of MovingPartBase, on the particular type of value provided by the...
Definition: movingPart.h:27
This is a particular kind of MovingPart that accepts a matrix each frame.
This is the base class for PartRoot and MovingPart.
Definition: partGroup.h:43