git-svn-id: https://reactphysics3d.googlecode.com/svn/trunk@238 92aac97c-a6ce-11dd-a772-7fcde58d38e6

This commit is contained in:
chappuis.daniel 2009-12-25 09:38:48 +00:00
parent 3b8f99fd55
commit cda4800f99

View File

@ -42,9 +42,8 @@ class Contact : public Constraint {
std::vector<Vector3D> points; // Contact points
public :
Contact(Body* const body1, Body* const body2, const Vector3D& normal,
const std::vector<Vector3D>& points); // Constructor
virtual ~Contact(); // Destructor
Contact(Body* const body1, Body* const body2, const Vector3D& normal, const std::vector<Vector3D>& points); // Constructor
virtual ~Contact(); // Destructor
Vector3D getNormal() const; // Return the normal vector of the contact
};