movingPartMatrix.I 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. // Filename: movingPartMatrix.I
  2. // Created by: drose (23Feb99)
  3. //
  4. ////////////////////////////////////////////////////////////////////
  5. //
  6. // PANDA 3D SOFTWARE
  7. // Copyright (c) 2001, 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://www.panda3d.org/license.txt .
  13. //
  14. // To contact the maintainers of this program write to
  15. // [email protected] .
  16. //
  17. ////////////////////////////////////////////////////////////////////
  18. ////////////////////////////////////////////////////////////////////
  19. // Function: MovingPartMatrix::Copy Constructor
  20. // Access: Protected
  21. // Description: Normally, you'd use make_copy() or copy_subgraph() to
  22. // make a copy of this.
  23. ////////////////////////////////////////////////////////////////////
  24. INLINE MovingPartMatrix::
  25. MovingPartMatrix(const MovingPartMatrix &copy) :
  26. MovingPart<ACMatrixSwitchType>(copy)
  27. {
  28. }
  29. ////////////////////////////////////////////////////////////////////
  30. // Function: MovingPartMatrix::Constructor
  31. // Access: Public
  32. // Description:
  33. ////////////////////////////////////////////////////////////////////
  34. INLINE MovingPartMatrix::
  35. MovingPartMatrix(PartGroup *parent, const string &name,
  36. const LMatrix4f &initial_value)
  37. : MovingPart<ACMatrixSwitchType>(parent, name, initial_value) {
  38. }
  39. ////////////////////////////////////////////////////////////////////
  40. // Function: MovingPartMatrix::Constructor
  41. // Access: Protected
  42. // Description:
  43. ////////////////////////////////////////////////////////////////////
  44. INLINE MovingPartMatrix::
  45. MovingPartMatrix(void) {
  46. }