From 730c2d33f56501a06d345b9fc80dd16960847312 Mon Sep 17 00:00:00 2001 From: "chappuis.daniel" Date: Mon, 19 Jul 2010 19:21:48 +0000 Subject: [PATCH] git-svn-id: https://reactphysics3d.googlecode.com/svn/trunk@352 92aac97c-a6ce-11dd-a772-7fcde58d38e6 --- sources/reactphysics3d/collision/ContactInfo.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sources/reactphysics3d/collision/ContactInfo.h b/sources/reactphysics3d/collision/ContactInfo.h index d52e792b..a795526d 100644 --- a/sources/reactphysics3d/collision/ContactInfo.h +++ b/sources/reactphysics3d/collision/ContactInfo.h @@ -40,8 +40,8 @@ struct ContactInfo { // TODO : Use polymorphism here (change OBB into BoundingVolume to be more general) const OBB* const obb1; // Body pointer of the first bounding volume const OBB* const obb2; // Body pointer of the second bounding volume - const Vector3D normal; // Normal vector the the collision contact - const double penetrationDepth; // Penetration depth of the contact + const Vector3D normal; // Normal vector the the collision contact + const double penetrationDepth; // Penetration depth of the contact ContactInfo(const OBB* const obb1, const OBB* const obb2, const Vector3D& normal, double penetrationDepth); // Constructor };