Differential D8762 Diff 28333 extern/bullet2/src/BulletCollision/CollisionShapes/btTriangleBuffer.cpp
Changeset View
Changeset View
Standalone View
Standalone View
extern/bullet2/src/BulletCollision/CollisionShapes/btTriangleBuffer.cpp
| Show All 9 Lines | |||||
| 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. | 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. | 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. | 3. This notice may not be removed or altered from any source distribution. | ||||
| */ | */ | ||||
| #include "btTriangleBuffer.h" | #include "btTriangleBuffer.h" | ||||
| void btTriangleBuffer::processTriangle(btVector3* triangle,int partId,int triangleIndex) | void btTriangleBuffer::processTriangle(btVector3* triangle, int partId, int triangleIndex) | ||||
| { | { | ||||
| btTriangle tri; | btTriangle tri; | ||||
| tri.m_vertex0 = triangle[0]; | tri.m_vertex0 = triangle[0]; | ||||
| tri.m_vertex1 = triangle[1]; | tri.m_vertex1 = triangle[1]; | ||||
| tri.m_vertex2 = triangle[2]; | tri.m_vertex2 = triangle[2]; | ||||
| tri.m_partId = partId; | tri.m_partId = partId; | ||||
| tri.m_triangleIndex = triangleIndex; | tri.m_triangleIndex = triangleIndex; | ||||
| m_triangleBuffer.push_back(tri); | m_triangleBuffer.push_back(tri); | ||||
| } | } | ||||