Panda3D
movingPartScalar.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 movingPartScalar.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 MovingPartScalar::
18 MovingPartScalar(const MovingPartScalar &copy) :
20 {
21 }
22 
23 /**
24  *
25  */
26 INLINE MovingPartScalar::
27 MovingPartScalar(PartGroup *parent, const std::string &name,
28  const PN_stdfloat &default_value)
29  : MovingPart<ACScalarSwitchType>(parent, name, default_value) {
30 }
31 
32 /**
33  *
34  */
35 INLINE MovingPartScalar::
36 MovingPartScalar(){
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 scalar each frame.
This is the base class for PartRoot and MovingPart.
Definition: partGroup.h:43