Panda3D
animChannelMatrixDynamic.I
1 // Filename: animChannelMatrixDynamic.I
2 // Created by: drose (20Oct03)
3 //
4 ////////////////////////////////////////////////////////////////////
5 //
6 // PANDA 3D SOFTWARE
7 // Copyright (c) Carnegie Mellon University. All rights reserved.
8 //
9 // All use of this software is subject to the terms of the revised BSD
10 // license. You should have received a copy of this license along
11 // with this source code in a file named "LICENSE."
12 //
13 ////////////////////////////////////////////////////////////////////
14 
15 
16 
17 ////////////////////////////////////////////////////////////////////
18 // Function: AnimChannelMatrixDynamic::get_value_transform
19 // Access: Published
20 // Description: Returns the explicit TransformState value that was
21 // set via set_value(), if any.
22 ////////////////////////////////////////////////////////////////////
23 INLINE const TransformState *AnimChannelMatrixDynamic::
25  return _value;
26 }
27 
28 ////////////////////////////////////////////////////////////////////
29 // Function: AnimChannelMatrixDynamic::get_value_node
30 // Access: Published
31 // Description: Returns the node that was set via set_value_node(),
32 // if any.
33 ////////////////////////////////////////////////////////////////////
35 get_value_node() const {
36  return _value_node;
37 }
A basic node of the scene graph or data graph.
Definition: pandaNode.h:72
PandaNode * get_value_node() const
Returns the node that was set via set_value_node(), if any.
const TransformState * get_value_transform() const
Returns the explicit TransformState value that was set via set_value(), if any.