2010-09-09 22:06:57 +00:00
|
|
|
/********************************************************************************
|
|
|
|
* ReactPhysics3D physics library, http://code.google.com/p/reactphysics3d/ *
|
2011-11-13 17:49:03 +00:00
|
|
|
* Copyright (c) 2010-2012 Daniel Chappuis *
|
2010-09-09 22:06:57 +00:00
|
|
|
*********************************************************************************
|
|
|
|
* *
|
2011-11-13 17:49:03 +00:00
|
|
|
* This software is provided 'as-is', without any express or implied warranty. *
|
|
|
|
* In no event will the authors be held liable for any damages arising from the *
|
|
|
|
* use of this software. *
|
2010-09-09 22:06:57 +00:00
|
|
|
* *
|
2011-11-13 17:49:03 +00:00
|
|
|
* Permission is granted to anyone to use this software for any purpose, *
|
|
|
|
* including commercial applications, and to alter it and redistribute it *
|
|
|
|
* freely, subject to the following restrictions: *
|
|
|
|
* *
|
|
|
|
* 1. The origin of this software must not be misrepresented; you must not claim *
|
|
|
|
* that you wrote the original software. If you use this software in a *
|
|
|
|
* product, an acknowledgment in the product documentation would be *
|
|
|
|
* appreciated but is not required. *
|
|
|
|
* *
|
|
|
|
* 2. Altered source versions must be plainly marked as such, and must not be *
|
|
|
|
* misrepresented as being the original software. *
|
|
|
|
* *
|
|
|
|
* 3. This notice may not be removed or altered from any source distribution. *
|
2010-09-09 22:06:57 +00:00
|
|
|
* *
|
|
|
|
********************************************************************************/
|
|
|
|
|
|
|
|
// Libraries
|
|
|
|
#include "ContactInfo.h"
|
|
|
|
|
|
|
|
using namespace reactphysics3d;
|
|
|
|
|
2011-02-01 11:03:54 +00:00
|
|
|
|
2012-01-27 22:41:26 +00:00
|
|
|
// Constructor
|
|
|
|
ContactInfo::ContactInfo(const Vector3& normal, decimal penetrationDepth,
|
2011-09-03 11:58:42 +00:00
|
|
|
const Vector3& localPoint1, const Vector3& localPoint2,
|
|
|
|
const Transform& transform1, const Transform& transform2)
|
2012-01-27 22:41:26 +00:00
|
|
|
: normal(normal), penetrationDepth(penetrationDepth), localPoint1(localPoint1), localPoint2(localPoint2),
|
|
|
|
worldPoint1(transform1 * localPoint1), worldPoint2(transform2 * localPoint2) {
|
2011-09-03 11:58:42 +00:00
|
|
|
|
2011-02-01 11:03:54 +00:00
|
|
|
}
|