Dave Schuyler hace 20 años
padre
commit
67f79bc9c4
Se han modificado 1 ficheros con 5 adiciones y 2 borrados
  1. 5 2
      panda/src/physics/physicsCollisionHandler.h

+ 5 - 2
panda/src/physics/physicsCollisionHandler.h

@@ -49,8 +49,11 @@ protected:
   float _static_friction_coef;
   float _dynamic_friction_coef;
 
-  void apply_friction(ColliderDef &def, LVector3f &vel, const LVector3f& force, float angle);
-  virtual void apply_net_shove(ColliderDef &def, const LVector3f &net_shove, const LVector3f &force_normal);
+  void apply_friction(
+      ColliderDef &def, LVector3f &vel, const LVector3f& force, float angle);
+  virtual void apply_net_shove(
+      ColliderDef &def, const LVector3f &net_shove,
+      const LVector3f &force_normal);
   virtual void apply_linear_force(ColliderDef &def, const LVector3f &force);
 
 public: