23 lines
659 B
Plaintext
23 lines
659 B
Plaintext
// Filename: LinearFrictionForce.I
|
|
// Created by: charles (31Jul00)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function : set_coef
|
|
// Access : public
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE void LinearFrictionForce::
|
|
set_coef(float coef) {
|
|
_coef = coef;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function : get_coef
|
|
// Access : public
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE float LinearFrictionForce::
|
|
get_coef(void) const {
|
|
return _coef;
|
|
}
|