mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 08:56:25 +02:00
add comment for why MAX_HULL_POINTS is 42
This commit is contained in:
parent
5a826d696a
commit
f3fc00bc3a
1 changed files with 3 additions and 0 deletions
|
@ -21,6 +21,9 @@
|
||||||
#include "DoubleHashKey.h"
|
#include "DoubleHashKey.h"
|
||||||
|
|
||||||
const float MIN_SHAPE_OFFSET = 0.001f; // offsets less than 1mm will be ignored
|
const float MIN_SHAPE_OFFSET = 0.001f; // offsets less than 1mm will be ignored
|
||||||
|
|
||||||
|
// Bullet has a mesh generation util for convex shapes that we used to
|
||||||
|
// trim convex hulls with many points down to only 42 points.
|
||||||
const int MAX_HULL_POINTS = 42;
|
const int MAX_HULL_POINTS = 42;
|
||||||
|
|
||||||
enum ShapeType {
|
enum ShapeType {
|
||||||
|
|
Loading…
Reference in a new issue