00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 INLINE void PhysicsCollisionHandler::
00017 set_almost_stationary_speed(PN_stdfloat speed) {
00018 _almost_stationary_speed = speed;
00019 }
00020
00021 INLINE PN_stdfloat PhysicsCollisionHandler::
00022 get_almost_stationary_speed() {
00023 return _almost_stationary_speed;
00024 }
00025
00026 INLINE void PhysicsCollisionHandler::
00027 set_static_friction_coef(PN_stdfloat coef) {
00028 _static_friction_coef = coef;
00029 }
00030
00031 INLINE PN_stdfloat PhysicsCollisionHandler::
00032 get_static_friction_coef() {
00033 return _static_friction_coef;
00034 }
00035
00036 INLINE void PhysicsCollisionHandler::
00037 set_dynamic_friction_coef(PN_stdfloat coef) {
00038 _dynamic_friction_coef = coef;
00039 }
00040
00041 INLINE PN_stdfloat PhysicsCollisionHandler::
00042 get_dynamic_friction_coef() {
00043 return _dynamic_friction_coef;
00044 }
00045
00046