⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 hinge_bp_builder.cpp

📁 hl2 source code. Do not use it illegal.
💻 CPP
字号:
#include <hk_physics/physics.h>
#include <hk_physics/constraint/hinge/hinge_bp_builder.h>

// IVP_EXPORT_PUBLIC

void hk_Hinge_BP_Builder::set_position_os( int body_index, const hk_Vector3 &position )
{
	m_hinge_bp.m_axis_os[ body_index ].m_origin = position;
}

void hk_Hinge_BP_Builder::set_axis_ws( hk_Rigid_Body *a, hk_Rigid_Body *b, const hk_Vector3& axis_ws )
{
	hk_Vector3 n_axis = axis_ws;
	n_axis.normalize();
	m_hinge_bp.m_axis_os[ 0 ].m_direction.set_rotated_inv_dir( a->get_cached_transform(), n_axis );
	m_hinge_bp.m_axis_os[ 1 ].m_direction.set_rotated_inv_dir( b->get_cached_transform(), n_axis );
	
}

void hk_Hinge_BP_Builder::set_angular_motor(hk_real angular_velocity, hk_real max_torque)
{
	m_hinge_bp.m_limit.set_motor( angular_velocity, max_torque );
}

void hk_Hinge_BP_Builder::set_angular_limits( hk_real lower, hk_real upper )
{
	m_hinge_bp.m_limit.set_limits( lower, upper );
}

void hk_Hinge_BP_Builder::set_joint_friction(hk_real friction)
{
	m_hinge_bp.m_limit.set_friction( friction );
}

void hk_Hinge_BP_Builder::set_tau( hk_real tau)
{
	m_hinge_bp.m_tau = tau;
}

⌨️ 快捷键说明

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