animChannelMatrixDynamic.I 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // Filename: animChannelMatrixDynamic.I
  2. // Created by: drose (20Oct03)
  3. //
  4. ////////////////////////////////////////////////////////////////////
  5. //
  6. // PANDA 3D SOFTWARE
  7. // Copyright (c) 2001 - 2004, Disney Enterprises, Inc. All rights reserved
  8. //
  9. // All use of this software is subject to the terms of the Panda 3d
  10. // Software license. You should have received a copy of this license
  11. // along with this source code; you will also find a current copy of
  12. // the license at http://etc.cmu.edu/panda3d/docs/license/ .
  13. //
  14. // To contact the maintainers of this program write to
  15. // [email protected] .
  16. //
  17. ////////////////////////////////////////////////////////////////////
  18. ////////////////////////////////////////////////////////////////////
  19. // Function: AnimChannelMatrixDynamic::get_value_transform
  20. // Access: Published
  21. // Description: Returns the explicit TransformState value that was
  22. // set via set_value(), if any.
  23. ////////////////////////////////////////////////////////////////////
  24. INLINE const TransformState *AnimChannelMatrixDynamic::
  25. get_value_transform() const {
  26. return _value;
  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. ////////////////////////////////////////////////////////////////////
  34. INLINE PandaNode *AnimChannelMatrixDynamic::
  35. get_value_node() const {
  36. return _value_node;
  37. }