hkaThreeJointsIkSolver.h
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:3k
源码类别:

其他游戏

开发平台:

Visual C++

  1. /* 
  2.  * 
  3.  * Confidential Information of Telekinesys Research Limited (t/a Havok). Not for disclosure or distribution without Havok's
  4.  * prior written consent. This software contains code, techniques and know-how which is confidential and proprietary to Havok.
  5.  * Level 2 and Level 3 source code contains trade secrets of Havok. Havok Software (C) Copyright 1999-2009 Telekinesys Research Limited t/a Havok. All Rights Reserved. Use of this software is subject to the terms of an end user license agreement.
  6.  * 
  7.  */
  8. #ifndef HK_THREEJOINTSIKSOLVER_H
  9. #define HK_THREEJOINTSIKSOLVER_H
  10. #include <Common/Base/hkBase.h>
  11. class hkaPose;
  12. class hkInternal3JointsIkIterSolver;
  13. /// This plane IK solver operates on the three specified joints in
  14. /// order for a third bone (end point/effector) to reach a desired
  15. /// position. All bones must lie in the plane. All three joints are
  16. /// considered hinges with an axis normal to this plane.
  17. /// Additionally the first joint is allowed to rotate about a
  18. /// specified axis parallel to the plane.  The joints/bones do not
  19. /// need to be immediate parents of each other (but they must be in
  20. /// the same chain).
  21. class hkaThreeJointsIkSolver : public hkReferencedObject
  22. {
  23. public:
  24. HK_DECLARE_CLASS_ALLOCATOR( HK_MEMORY_CLASS_ANIM_RUNTIME );
  25. /// This setup data is passed to constructor
  26. struct Setup
  27. {
  28. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_ANIM_RUNTIME, hkaThreeJointsIkSolver::Setup );
  29. /// The id of the first joint 
  30. hkInt16 m_firstJointIdx;
  31. /// The id of the second joint 
  32. hkInt16 m_secondJointIdx;
  33. /// The id of the third joint 
  34. hkInt16 m_thirdJointIdx;
  35. /// The id of the end bone 
  36. hkInt16 m_endBoneIdx;
  37. /// Rotation axis of the first joint in model space
  38. hkVector4 m_hingeAxisMS;
  39. };
  40. /// Constructor input is setup structure and init pose
  41. hkaThreeJointsIkSolver (const Setup& setupIn, const hkaPose& poseIn);
  42. /// Destructor
  43. ~hkaThreeJointsIkSolver();
  44. /// Modifies the given pose in order to reach the target position in model space. 
  45. hkResult HK_CALL solve ( const hkVector4& targetPositionMS, hkaPose& poseInOut );
  46. private:
  47. Setup m_setup;
  48. hkInternal3JointsIkIterSolver* m_intSolver;
  49. };
  50. #endif // HK_THREEJOINTSIKSOLVER_H
  51. /*
  52. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  53. * Confidential Information of Havok.  (C) Copyright 1999-2009
  54. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  55. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  56. * rights, and intellectual property rights in the Havok software remain in
  57. * Havok and/or its suppliers.
  58. * Use of this software for evaluation purposes is subject to and indicates
  59. * acceptance of the End User licence Agreement for this product. A copy of
  60. * the license is included with this software and is also available at www.havok.com/tryhavok.
  61. */