コード例 #1
0
float Spring::getLength(){
	return cpDampedSpringGetRestLength(constraint);
}
コード例 #2
0
ファイル: Springies.c プロジェクト: AntonioModer/Cheetah
static cpFloat
springForce(cpConstraint *spring, cpFloat dist)
{
	cpFloat clamp = 20.0f;
	return cpfclamp(cpDampedSpringGetRestLength(spring) - dist, -clamp, clamp)*cpDampedSpringGetStiffness(spring);
}
コード例 #3
0
float PhysicsJointSpring::getRestLength() const
{
    return PhysicsHelper::cpfloat2float(cpDampedSpringGetRestLength(_cpConstraints.front()));
}