remove unused function

This commit is contained in:
Irlan 2018-07-17 22:13:43 -03:00
parent be76409ffc
commit f70e4be908
2 changed files with 1 additions and 8 deletions

View File

@ -64,9 +64,7 @@ class b3FrictionForce : public b3Force
public: public:
b3FrictionForce() { } b3FrictionForce() { }
~b3FrictionForce() { } ~b3FrictionForce() { }
void SolvePositionConstraints(const b3ClothSolverData* data);
void Apply(const b3ClothSolverData* data); void Apply(const b3ClothSolverData* data);
b3Particle* m_p; b3Particle* m_p;

View File

@ -22,11 +22,6 @@
#include <bounce/dynamics/cloth/dense_vec3.h> #include <bounce/dynamics/cloth/dense_vec3.h>
#include <bounce/dynamics/cloth/sparse_sym_mat33.h> #include <bounce/dynamics/cloth/sparse_sym_mat33.h>
void b3FrictionForce::SolvePositionConstraints(const b3ClothSolverData* data)
{
B3_NOT_USED(data);
}
void b3FrictionForce::Apply(const b3ClothSolverData* data) void b3FrictionForce::Apply(const b3ClothSolverData* data)
{ {
// TODO // TODO