prismatic_bp.h

来自「hl2 source code. Do not use it illegal.」· C头文件 代码 · 共 35 行

H
35
字号
#ifndef HK_PHYSICS_PRISMATIC_BP_H
#define HK_PHYSICS_PRISMATIC_BP_H

class hk_Prismatic_BP  //: public hk_Effector_BP 
{
	public:

		inline hk_Prismatic_BP()
		{
			m_strength	= 1.0f;
			m_tau		= 1.0f;
			m_transform_Ros_Aos.set_identity();
			m_axis_Ros.set(1.0f,0,0);
		}

		void set_position_os ( int, hk_Vector3 &position_os);

	protected:

		hk_id		m_bodies[2];

	//private: 
	public: // hack for now

		hk_QTransform m_transform_Ros_Aos;

		hk_real m_strength;
		hk_real m_tau;

		hk_Vector3			m_axis_Ros;
		hk_Constraint_Limit m_limit;
};

#endif /* HK_PHYSICS_LOCAL_PRISMATIC_BP_H */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?