Task assignment in RigidBody.cpp
This commit is contained in:
parent
3f518c72e8
commit
1b2c49457c
|
@ -258,6 +258,10 @@ Float3 RigidBody::GetTangentialImpulseForceAt_World( const Float3 &worldPos ) co
|
||||||
return this->GetTangentialImpulseForceAt_Local( (this->GetView() * Float4(worldPos, 1.0f)).xyz ); // should not be any disform thus result.w = 1.0f
|
return this->GetTangentialImpulseForceAt_Local( (this->GetView() * Float4(worldPos, 1.0f)).xyz ); // should not be any disform thus result.w = 1.0f
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Dan
|
||||||
|
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
// Robin
|
||||||
|
|
||||||
Float3 RigidBody::GetTangentialLinearMomentumAt_Local( const Float3 &localPos ) const
|
Float3 RigidBody::GetTangentialLinearMomentumAt_Local( const Float3 &localPos ) const
|
||||||
{ // by Dan Andersson
|
{ // by Dan Andersson
|
||||||
return Formula::TangentialLinearMomentum( this->angularMomentum, localPos );
|
return Formula::TangentialLinearMomentum( this->angularMomentum, localPos );
|
||||||
|
|
Loading…
Reference in New Issue