Bullet Collision Detection & Physics Library
btContactProcessing.h
Go to the documentation of this file.
1#ifndef BT_CONTACT_H_INCLUDED
2#define BT_CONTACT_H_INCLUDED
3
7/*
8This source file is part of GIMPACT Library.
9
10For the latest info, see http://gimpact.sourceforge.net/
11
12Copyright (c) 2007 Francisco Leon Najera. C.C. 80087371.
13email: projectileman@yahoo.com
14
15
16This software is provided 'as-is', without any express or implied warranty.
17In no event will the authors be held liable for any damages arising from the use of this software.
18Permission is granted to anyone to use this software for any purpose,
19including commercial applications, and to alter it and redistribute it freely,
20subject to the following restrictions:
21
221. 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.
232. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
243. This notice may not be removed or altered from any source distribution.
25*/
26
29#include "btTriangleShapeEx.h"
31
32class btContactArray : public btAlignedObjectArray<GIM_CONTACT>
33{
34public:
36 {
37 reserve(64);
38 }
39
41 const btVector3 &point, const btVector3 &normal,
42 btScalar depth, int feature1, int feature2)
43 {
44 push_back(GIM_CONTACT(point, normal, depth, feature1, feature2));
45 }
46
48 const GIM_TRIANGLE_CONTACT &tricontact,
49 int feature1, int feature2)
50 {
51 for (int i = 0; i < tricontact.m_point_count; i++)
52 {
54 tricontact.m_points[i],
55 tricontact.m_separating_normal,
56 tricontact.m_penetration_depth, feature1, feature2);
57 }
58 }
59
60 void merge_contacts(const btContactArray &contacts, bool normal_contact_average = true);
61
62 void merge_contacts_unique(const btContactArray &contacts);
63};
64
65#endif // GIM_CONTACT_H_INCLUDED
float btScalar
The btScalar type abstracts floating point numbers, to easily switch between double and single floati...
Definition: btScalar.h:314
#define SIMD_FORCE_INLINE
Definition: btScalar.h:98
The GIM_CONTACT is an internal GIMPACT structure, similar to btManifoldPoint.
The btAlignedObjectArray template class uses a subset of the stl::vector interface for its methods It...
void push_back(const GIM_CONTACT &_Val)
void push_contact(const btVector3 &point, const btVector3 &normal, btScalar depth, int feature1, int feature2)
void push_triangle_contacts(const GIM_TRIANGLE_CONTACT &tricontact, int feature1, int feature2)
void merge_contacts_unique(const btContactArray &contacts)
void merge_contacts(const btContactArray &contacts, bool normal_contact_average=true)
btVector3 can be used to represent 3D points and vectors.
Definition: btVector3.h:82
Structure for collision.
btVector3 m_points[MAX_TRI_CLIPPING]