Blender V4.3
btQuantizedBvh.h
Go to the documentation of this file.
1/*
2Bullet Continuous Collision Detection and Physics Library
3Copyright (c) 2003-2006 Erwin Coumans http://continuousphysics.com/Bullet/
4
5This software is provided 'as-is', without any express or implied warranty.
6In no event will the authors be held liable for any damages arising from the use of this software.
7Permission is granted to anyone to use this software for any purpose,
8including commercial applications, and to alter it and redistribute it freely,
9subject to the following restrictions:
10
111. 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.
122. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
133. This notice may not be removed or altered from any source distribution.
14*/
15
16#ifndef BT_QUANTIZED_BVH_H
17#define BT_QUANTIZED_BVH_H
18
19class btSerializer;
20
21//#define DEBUG_CHECK_DEQUANTIZATION 1
22#ifdef DEBUG_CHECK_DEQUANTIZATION
23#ifdef __SPU__
24#define printf spu_printf
25#endif //__SPU__
26
27#include <stdio.h>
28#include <stdlib.h>
29#endif //DEBUG_CHECK_DEQUANTIZATION
30
33
34#ifdef BT_USE_DOUBLE_PRECISION
35#define btQuantizedBvhData btQuantizedBvhDoubleData
36#define btOptimizedBvhNodeData btOptimizedBvhNodeDoubleData
37#define btQuantizedBvhDataName "btQuantizedBvhDoubleData"
38#else
39#define btQuantizedBvhData btQuantizedBvhFloatData
40#define btOptimizedBvhNodeData btOptimizedBvhNodeFloatData
41#define btQuantizedBvhDataName "btQuantizedBvhFloatData"
42#endif
43
44//http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vclang/html/vclrf__m128.asp
45
46//Note: currently we have 16 bytes per quantized node
47#define MAX_SUBTREE_SIZE_IN_BYTES 2048
48
49// 10 gives the potential for 1024 parts, with at most 2^21 (2097152) (minus one
50// actually) triangles each (since the sign bit is reserved
51#define MAX_NUM_PARTS_IN_BITS 10
52
57{
59
60 //12 bytes
61 unsigned short int m_quantizedAabbMin[3];
62 unsigned short int m_quantizedAabbMax[3];
63 //4 bytes
65
66 bool isLeafNode() const
67 {
68 //skipindex is negative (internal node), triangleindex >=0 (leafnode)
69 return (m_escapeIndexOrTriangleIndex >= 0);
70 }
71 int getEscapeIndex() const
72 {
75 }
76 int getTriangleIndex() const
77 {
79 unsigned int x = 0;
80 unsigned int y = (~(x & 0)) << (31 - MAX_NUM_PARTS_IN_BITS);
81 // Get only the lower bits where the triangle index is stored
82 return (m_escapeIndexOrTriangleIndex & ~(y));
83 }
84 int getPartId() const
85 {
87 // Get only the highest bits where the part index is stored
89 }
90};
91
96{
98
99 //32 bytes
100 btVector3 m_aabbMinOrg;
101 btVector3 m_aabbMaxOrg;
102
103 //4
105
106 //8
107 //for child nodes
110
111 //pad the size to 64 bytes
112 char m_padding[20];
113};
114
118{
119public:
121
122 //12 bytes
123 unsigned short int m_quantizedAabbMin[3];
124 unsigned short int m_quantizedAabbMax[3];
125 //4 bytes, points to the root of the subtree
127 //4 bytes
129 int m_padding[3];
130
132 {
133 //memset(&m_padding[0], 0, sizeof(m_padding));
134 }
135
137 {
138 m_quantizedAabbMin[0] = quantizedNode.m_quantizedAabbMin[0];
139 m_quantizedAabbMin[1] = quantizedNode.m_quantizedAabbMin[1];
140 m_quantizedAabbMin[2] = quantizedNode.m_quantizedAabbMin[2];
141 m_quantizedAabbMax[0] = quantizedNode.m_quantizedAabbMax[0];
142 m_quantizedAabbMax[1] = quantizedNode.m_quantizedAabbMax[1];
143 m_quantizedAabbMax[2] = quantizedNode.m_quantizedAabbMax[2];
144 }
145};
146
148{
149public:
151
152 virtual void processNode(int subPart, int triangleIndex) = 0;
153};
154
157
162
168{
169public:
170 enum btTraversalMode
171 {
172 TRAVERSAL_STACKLESS = 0,
173 TRAVERSAL_STACKLESS_CACHE_FRIENDLY,
174 TRAVERSAL_RECURSIVE
175 };
176
177protected:
178 btVector3 m_bvhAabbMin;
179 btVector3 m_bvhAabbMax;
181
182 int m_bulletVersion; //for serialization versioning. It could also be used to detect endianess.
183
185 //quantization data
187
192
193 btTraversalMode m_traversalMode;
195
196 //This is only used for serialization so we don't have to add serialization directly to btAlignedObjectArray
198
201 void setInternalNodeAabbMin(int nodeIndex, const btVector3& aabbMin)
202 {
204 {
205 quantize(&m_quantizedContiguousNodes[nodeIndex].m_quantizedAabbMin[0], aabbMin, 0);
206 }
207 else
208 {
209 m_contiguousNodes[nodeIndex].m_aabbMinOrg = aabbMin;
210 }
211 }
212 void setInternalNodeAabbMax(int nodeIndex, const btVector3& aabbMax)
213 {
215 {
216 quantize(&m_quantizedContiguousNodes[nodeIndex].m_quantizedAabbMax[0], aabbMax, 1);
217 }
218 else
219 {
220 m_contiguousNodes[nodeIndex].m_aabbMaxOrg = aabbMax;
221 }
222 }
223
224 btVector3 getAabbMin(int nodeIndex) const
225 {
227 {
229 }
230 //non-quantized
231 return m_leafNodes[nodeIndex].m_aabbMinOrg;
232 }
233 btVector3 getAabbMax(int nodeIndex) const
234 {
236 {
238 }
239 //non-quantized
240 return m_leafNodes[nodeIndex].m_aabbMaxOrg;
241 }
242
243 void setInternalNodeEscapeIndex(int nodeIndex, int escapeIndex)
244 {
246 {
247 m_quantizedContiguousNodes[nodeIndex].m_escapeIndexOrTriangleIndex = -escapeIndex;
248 }
249 else
250 {
251 m_contiguousNodes[nodeIndex].m_escapeIndex = escapeIndex;
252 }
253 }
254
255 void mergeInternalNodeAabb(int nodeIndex, const btVector3& newAabbMin, const btVector3& newAabbMax)
256 {
258 {
259 unsigned short int quantizedAabbMin[3];
260 unsigned short int quantizedAabbMax[3];
261 quantize(quantizedAabbMin, newAabbMin, 0);
262 quantize(quantizedAabbMax, newAabbMax, 1);
263 for (int i = 0; i < 3; i++)
264 {
265 if (m_quantizedContiguousNodes[nodeIndex].m_quantizedAabbMin[i] > quantizedAabbMin[i])
266 m_quantizedContiguousNodes[nodeIndex].m_quantizedAabbMin[i] = quantizedAabbMin[i];
267
268 if (m_quantizedContiguousNodes[nodeIndex].m_quantizedAabbMax[i] < quantizedAabbMax[i])
269 m_quantizedContiguousNodes[nodeIndex].m_quantizedAabbMax[i] = quantizedAabbMax[i];
270 }
271 }
272 else
273 {
274 //non-quantized
275 m_contiguousNodes[nodeIndex].m_aabbMinOrg.setMin(newAabbMin);
276 m_contiguousNodes[nodeIndex].m_aabbMaxOrg.setMax(newAabbMax);
277 }
278 }
279
280 void swapLeafNodes(int firstIndex, int secondIndex);
281
282 void assignInternalNodeFromLeafNode(int internalNode, int leafNodeIndex);
283
284protected:
285 void buildTree(int startIndex, int endIndex);
286
287 int calcSplittingAxis(int startIndex, int endIndex);
288
289 int sortAndCalcSplittingIndex(int startIndex, int endIndex, int splitAxis);
290
291 void walkStacklessTree(btNodeOverlapCallback * nodeCallback, const btVector3& aabbMin, const btVector3& aabbMax) const;
292
293 void walkStacklessQuantizedTreeAgainstRay(btNodeOverlapCallback * nodeCallback, const btVector3& raySource, const btVector3& rayTarget, const btVector3& aabbMin, const btVector3& aabbMax, int startNodeIndex, int endNodeIndex) const;
294 void walkStacklessQuantizedTree(btNodeOverlapCallback * nodeCallback, unsigned short int* quantizedQueryAabbMin, unsigned short int* quantizedQueryAabbMax, int startNodeIndex, int endNodeIndex) const;
295 void walkStacklessTreeAgainstRay(btNodeOverlapCallback * nodeCallback, const btVector3& raySource, const btVector3& rayTarget, const btVector3& aabbMin, const btVector3& aabbMax, int startNodeIndex, int endNodeIndex) const;
296
298 void walkStacklessQuantizedTreeCacheFriendly(btNodeOverlapCallback * nodeCallback, unsigned short int* quantizedQueryAabbMin, unsigned short int* quantizedQueryAabbMax) const;
299
301 void walkRecursiveQuantizedTreeAgainstQueryAabb(const btQuantizedBvhNode* currentNode, btNodeOverlapCallback* nodeCallback, unsigned short int* quantizedQueryAabbMin, unsigned short int* quantizedQueryAabbMax) const;
302
305
306 void updateSubtreeHeaders(int leftChildNodexIndex, int rightChildNodexIndex);
307
308public:
310
312
313 virtual ~btQuantizedBvh();
314
316 void setQuantizationValues(const btVector3& bvhAabbMin, const btVector3& bvhAabbMax, btScalar quantizationMargin = btScalar(1.0));
319 void buildInternal();
321
322 void reportAabbOverlappingNodex(btNodeOverlapCallback * nodeCallback, const btVector3& aabbMin, const btVector3& aabbMax) const;
323 void reportRayOverlappingNodex(btNodeOverlapCallback * nodeCallback, const btVector3& raySource, const btVector3& rayTarget) const;
324 void reportBoxCastOverlappingNodex(btNodeOverlapCallback * nodeCallback, const btVector3& raySource, const btVector3& rayTarget, const btVector3& aabbMin, const btVector3& aabbMax) const;
325
326 SIMD_FORCE_INLINE void quantize(unsigned short* out, const btVector3& point, int isMax) const
327 {
329
330 btAssert(point.getX() <= m_bvhAabbMax.getX());
331 btAssert(point.getY() <= m_bvhAabbMax.getY());
332 btAssert(point.getZ() <= m_bvhAabbMax.getZ());
333
334 btAssert(point.getX() >= m_bvhAabbMin.getX());
335 btAssert(point.getY() >= m_bvhAabbMin.getY());
336 btAssert(point.getZ() >= m_bvhAabbMin.getZ());
337
338 btVector3 v = (point - m_bvhAabbMin) * m_bvhQuantization;
342 if (isMax)
343 {
344 out[0] = (unsigned short)(((unsigned short)(v.getX() + btScalar(1.)) | 1));
345 out[1] = (unsigned short)(((unsigned short)(v.getY() + btScalar(1.)) | 1));
346 out[2] = (unsigned short)(((unsigned short)(v.getZ() + btScalar(1.)) | 1));
347 }
348 else
349 {
350 out[0] = (unsigned short)(((unsigned short)(v.getX()) & 0xfffe));
351 out[1] = (unsigned short)(((unsigned short)(v.getY()) & 0xfffe));
352 out[2] = (unsigned short)(((unsigned short)(v.getZ()) & 0xfffe));
353 }
354
355#ifdef DEBUG_CHECK_DEQUANTIZATION
356 btVector3 newPoint = unQuantize(out);
357 if (isMax)
358 {
359 if (newPoint.getX() < point.getX())
360 {
361 printf("unconservative X, diffX = %f, oldX=%f,newX=%f\n", newPoint.getX() - point.getX(), newPoint.getX(), point.getX());
362 }
363 if (newPoint.getY() < point.getY())
364 {
365 printf("unconservative Y, diffY = %f, oldY=%f,newY=%f\n", newPoint.getY() - point.getY(), newPoint.getY(), point.getY());
366 }
367 if (newPoint.getZ() < point.getZ())
368 {
369 printf("unconservative Z, diffZ = %f, oldZ=%f,newZ=%f\n", newPoint.getZ() - point.getZ(), newPoint.getZ(), point.getZ());
370 }
371 }
372 else
373 {
374 if (newPoint.getX() > point.getX())
375 {
376 printf("unconservative X, diffX = %f, oldX=%f,newX=%f\n", newPoint.getX() - point.getX(), newPoint.getX(), point.getX());
377 }
378 if (newPoint.getY() > point.getY())
379 {
380 printf("unconservative Y, diffY = %f, oldY=%f,newY=%f\n", newPoint.getY() - point.getY(), newPoint.getY(), point.getY());
381 }
382 if (newPoint.getZ() > point.getZ())
383 {
384 printf("unconservative Z, diffZ = %f, oldZ=%f,newZ=%f\n", newPoint.getZ() - point.getZ(), newPoint.getZ(), point.getZ());
385 }
386 }
387#endif //DEBUG_CHECK_DEQUANTIZATION
388 }
389
390 SIMD_FORCE_INLINE void quantizeWithClamp(unsigned short* out, const btVector3& point2, int isMax) const
391 {
393
394 btVector3 clampedPoint(point2);
395 clampedPoint.setMax(m_bvhAabbMin);
396 clampedPoint.setMin(m_bvhAabbMax);
397
398 quantize(out, clampedPoint, isMax);
399 }
400
401 SIMD_FORCE_INLINE btVector3 unQuantize(const unsigned short* vecIn) const
402 {
403 btVector3 vecOut;
404 vecOut.setValue(
405 (btScalar)(vecIn[0]) / (m_bvhQuantization.getX()),
406 (btScalar)(vecIn[1]) / (m_bvhQuantization.getY()),
407 (btScalar)(vecIn[2]) / (m_bvhQuantization.getZ()));
408 vecOut += m_bvhAabbMin;
409 return vecOut;
410 }
411
413 void setTraversalMode(btTraversalMode traversalMode)
414 {
415 m_traversalMode = traversalMode;
416 }
417
422
427
429
432
434 virtual bool serialize(void* o_alignedDataBuffer, unsigned i_dataBufferSize, bool i_swapEndian) const;
435
437 static btQuantizedBvh* deSerializeInPlace(void* i_alignedDataBuffer, unsigned int i_dataBufferSize, bool i_swapEndian);
438
439 static unsigned int getAlignmentSerializationPadding();
441
442 virtual int calculateSerializeBufferSizeNew() const;
443
445 virtual const char* serialize(void* dataBuffer, btSerializer* serializer) const;
446
447 virtual void deSerializeFloat(struct btQuantizedBvhFloatData & quantizedBvhFloatData);
448
449 virtual void deSerializeDouble(struct btQuantizedBvhDoubleData & quantizedBvhDoubleData);
450
452
454 {
455 return m_useQuantization;
456 }
457
458private:
459 // Special "copy" constructor that allows for in-place deserialization
460 // Prevents btVector3's default constructor from being called, but doesn't inialize much else
461 // ownsMemory should most likely be false if deserializing, and if you are not, don't call this (it also changes the function signature, which we need)
462 btQuantizedBvh(btQuantizedBvh & other, bool ownsMemory);
463};
464
465// clang-format off
466// parser needs * with the name
467struct btBvhSubtreeInfoData
468{
469 int m_rootNodeIndex;
470 int m_subtreeSize;
471 unsigned short m_quantizedAabbMin[3];
472 unsigned short m_quantizedAabbMax[3];
473};
474
475struct btOptimizedBvhNodeFloatData
476{
477 btVector3FloatData m_aabbMinOrg;
478 btVector3FloatData m_aabbMaxOrg;
479 int m_escapeIndex;
480 int m_subPart;
481 int m_triangleIndex;
482 char m_pad[4];
483};
484
485struct btOptimizedBvhNodeDoubleData
486{
487 btVector3DoubleData m_aabbMinOrg;
488 btVector3DoubleData m_aabbMaxOrg;
489 int m_escapeIndex;
490 int m_subPart;
491 int m_triangleIndex;
492 char m_pad[4];
493};
494
495
496struct btQuantizedBvhNodeData
497{
498 unsigned short m_quantizedAabbMin[3];
499 unsigned short m_quantizedAabbMax[3];
500 int m_escapeIndexOrTriangleIndex;
501};
502
503struct btQuantizedBvhFloatData
504{
508 int m_curNodeIndex;
510 int m_numContiguousLeafNodes;
511 int m_numQuantizedContiguousNodes;
512 btOptimizedBvhNodeFloatData *m_contiguousNodesPtr;
513 btQuantizedBvhNodeData *m_quantizedContiguousNodesPtr;
514 btBvhSubtreeInfoData *m_subTreeInfoPtr;
515 int m_traversalMode;
516 int m_numSubtreeHeaders;
517
518};
519
520struct btQuantizedBvhDoubleData
521{
525 int m_curNodeIndex;
527 int m_numContiguousLeafNodes;
528 int m_numQuantizedContiguousNodes;
529 btOptimizedBvhNodeDoubleData *m_contiguousNodesPtr;
530 btQuantizedBvhNodeData *m_quantizedContiguousNodesPtr;
531
532 int m_traversalMode;
533 int m_numSubtreeHeaders;
534 btBvhSubtreeInfoData *m_subTreeInfoPtr;
535};
536// clang-format on
537
538SIMD_FORCE_INLINE int btQuantizedBvh::calculateSerializeBufferSizeNew() const
539{
540 return sizeof(btQuantizedBvhData);
541}
542
543#endif //BT_QUANTIZED_BVH_H
ATTR_WARN_UNUSED_RESULT const BMVert * v
SIMD_FORCE_INLINE const btVector3 & getAabbMin() const
SIMD_FORCE_INLINE const btVector3 & getAabbMax() const
void reportAabbOverlappingNodex(btNodeOverlapCallback *nodeCallback, const btVector3 &aabbMin, const btVector3 &aabbMax) const
***************************************** expert/internal use only *************************
BT_DECLARE_ALIGNED_ALLOCATOR()
btVector3 m_aabbMaxOrg
NodeArray m_leafNodes
SIMD_FORCE_INLINE void quantize(unsigned short *out, const btVector3 &point, int isMax) const
virtual int calculateSerializeBufferSizeNew() const
void setQuantizationValues(const btVector3 &bvhAabbMin, const btVector3 &bvhAabbMax, btScalar quantizationMargin=btScalar(1.0))
***************************************** expert/internal use only *************************
void swapLeafNodes(int firstIndex, int secondIndex)
int m_escapeIndexOrTriangleIndex
SIMD_FORCE_INLINE QuantizedNodeArray & getQuantizedNodeArray()
void walkRecursiveQuantizedTreeAgainstQueryAabb(const btQuantizedBvhNode *currentNode, btNodeOverlapCallback *nodeCallback, unsigned short int *quantizedQueryAabbMin, unsigned short int *quantizedQueryAabbMax) const
use the 16-byte stackless 'skipindex' node tree to do a recursive traversal
void mergeInternalNodeAabb(int nodeIndex, const btVector3 &newAabbMin, const btVector3 &newAabbMax)
void walkRecursiveQuantizedTreeAgainstQuantizedTree(const btQuantizedBvhNode *treeNodeA, const btQuantizedBvhNode *treeNodeB, btNodeOverlapCallback *nodeCallback) const
use the 16-byte stackless 'skipindex' node tree to do a recursive traversal
int getTriangleIndex() const
btQuantizedBvh
bool m_useQuantization
void updateSubtreeHeaders(int leftChildNodexIndex, int rightChildNodexIndex)
void setInternalNodeEscapeIndex(int nodeIndex, int escapeIndex)
void buildTree(int startIndex, int endIndex)
virtual void deSerializeFloat(struct btQuantizedBvhFloatData &quantizedBvhFloatData)
int m_triangleIndex
unsigned short int m_quantizedAabbMin[3]
btTraversalMode m_traversalMode
btAlignedObjectArray< btOptimizedBvhNode > NodeArray
for code readability:
static btQuantizedBvh * deSerializeInPlace(void *i_alignedDataBuffer, unsigned int i_dataBufferSize, bool i_swapEndian)
deSerializeInPlace loads and initializes a BVH from a buffer in memory 'in place'
SIMD_FORCE_INLINE void quantizeWithClamp(unsigned short *out, const btVector3 &point2, int isMax) const
NodeArray m_contiguousNodes
int getPartId() const
void walkStacklessQuantizedTreeAgainstRay(btNodeOverlapCallback *nodeCallback, const btVector3 &raySource, const btVector3 &rayTarget, const btVector3 &aabbMin, const btVector3 &aabbMax, int startNodeIndex, int endNodeIndex) const
virtual ~btQuantizedBvh()
int m_subPart
char m_padding[20]
void setInternalNodeAabbMin(int nodeIndex, const btVector3 &aabbMin)
virtual void deSerializeDouble(struct btQuantizedBvhDoubleData &quantizedBvhDoubleData)
QuantizedNodeArray & getLeafNodeArray()
static unsigned int getAlignmentSerializationPadding()
void reportRayOverlappingNodex(btNodeOverlapCallback *nodeCallback, const btVector3 &raySource, const btVector3 &rayTarget) const
btAlignedObjectArray< btBvhSubtreeInfo > BvhSubtreeInfoArray
int m_subtreeSize
void reportBoxCastOverlappingNodex(btNodeOverlapCallback *nodeCallback, const btVector3 &raySource, const btVector3 &rayTarget, const btVector3 &aabbMin, const btVector3 &aabbMax) const
unsigned calculateSerializeBufferSize() const
void walkStacklessQuantizedTreeCacheFriendly(btNodeOverlapCallback *nodeCallback, unsigned short int *quantizedQueryAabbMin, unsigned short int *quantizedQueryAabbMax) const
tree traversal designed for small-memory processors like PS3 SPU
#define MAX_NUM_PARTS_IN_BITS
void walkStacklessTree(btNodeOverlapCallback *nodeCallback, const btVector3 &aabbMin, const btVector3 &aabbMax) const
btAlignedObjectArray< btQuantizedBvhNode > QuantizedNodeArray
int m_rootNodeIndex
btBvhSubtreeInfo
btBvhSubtreeInfo provides info to gather a subtree of limited size
void walkStacklessTreeAgainstRay(btNodeOverlapCallback *nodeCallback, const btVector3 &raySource, const btVector3 &rayTarget, const btVector3 &aabbMin, const btVector3 &aabbMax, int startNodeIndex, int endNodeIndex) const
btQuantizedBvhNode
btVector3 m_bvhAabbMin
btOptimizedBvhNode
virtual bool serialize(void *o_alignedDataBuffer, unsigned i_dataBufferSize, bool i_swapEndian) const
Data buffer MUST be 16 byte aligned.
btVector3 m_bvhQuantization
int m_curNodeIndex
BvhSubtreeInfoArray m_SubtreeHeaders
void setAabbFromQuantizeNode(const btQuantizedBvhNode &quantizedNode)
unsigned short int m_quantizedAabbMax[3]
btVector3 m_aabbMinOrg
int m_subtreeHeaderCount
void walkStacklessQuantizedTree(btNodeOverlapCallback *nodeCallback, unsigned short int *quantizedQueryAabbMin, unsigned short int *quantizedQueryAabbMax, int startNodeIndex, int endNodeIndex) const
void assignInternalNodeFromLeafNode(int internalNode, int leafNodeIndex)
QuantizedNodeArray m_quantizedContiguousNodes
btVector3 m_bvhAabbMax
int sortAndCalcSplittingIndex(int startIndex, int endIndex, int splitAxis)
int getEscapeIndex() const
void setInternalNodeAabbMax(int nodeIndex, const btVector3 &aabbMax)
SIMD_FORCE_INLINE BvhSubtreeInfoArray & getSubtreeInfoArray()
SIMD_FORCE_INLINE btVector3 unQuantize(const unsigned short *vecIn) const
int calcSplittingAxis(int startIndex, int endIndex)
SIMD_FORCE_INLINE bool isQuantized()
void buildInternal()
buildInternal is expert use only: assumes that setQuantizationValues and LeafNodeArray are initialize...
QuantizedNodeArray m_quantizedLeafNodes
int m_bulletVersion
int m_escapeIndex
void setTraversalMode(btTraversalMode traversalMode)
setTraversalMode let's you choose between stackless, recursive or stackless cache friendly tree trave...
#define btQuantizedBvhData
bool isLeafNode() const
float btScalar
The btScalar type abstracts floating point numbers, to easily switch between double and single floati...
Definition btScalar.h:314
#define ATTRIBUTE_ALIGNED16(a)
Definition btScalar.h:285
#define SIMD_FORCE_INLINE
Definition btScalar.h:280
#define btAssert(x)
Definition btScalar.h:295
virtual void processNode(int subPart, int triangleIndex)=0
#define printf