diff --git a/sources/reactphysics3d/constraint/Contact.h b/sources/reactphysics3d/constraint/Contact.h index ff48efce..85b7bc06 100644 --- a/sources/reactphysics3d/constraint/Contact.h +++ b/sources/reactphysics3d/constraint/Contact.h @@ -42,9 +42,8 @@ class Contact : public Constraint { std::vector points; // Contact points public : - Contact(Body* const body1, Body* const body2, const Vector3D& normal, - const std::vector& points); // Constructor - virtual ~Contact(); // Destructor + Contact(Body* const body1, Body* const body2, const Vector3D& normal, const std::vector& points); // Constructor + virtual ~Contact(); // Destructor Vector3D getNormal() const; // Return the normal vector of the contact };