Files
bullet3/examples
Erwin Coumans bf9efffa4b Increase mesh allocation for vertices/indices in PyBullet.createCollisionShape
See createMesh.py for an example.

The data has to fit in shared memory, hence the limit on Mac is lower than Windows and Linux:

#ifdef __APPLE__
#define B3_MAX_NUM_VERTICES 8192
#define B3_MAX_NUM_INDICES 32768
#else
#define B3_MAX_NUM_VERTICES 131072
#define B3_MAX_NUM_INDICES 524288
#endif
2019-01-03 16:19:28 -08:00
..
2017-03-13 11:00:56 -07:00
2018-10-09 16:25:32 -07:00
2018-11-19 14:47:03 -08:00
2017-11-26 20:38:50 -05:00