mirror of
https://github.com/overte-org/overte.git
synced 2025-04-18 07:56:25 +02:00
remove debug cruft
This commit is contained in:
parent
acf4539f4f
commit
22e7e150fc
1 changed files with 0 additions and 2 deletions
|
@ -69,7 +69,6 @@ static const btVector3 _unitSphereDirections[NUM_UNIT_SPHERE_DIRECTIONS] = {
|
|||
|
||||
// util method
|
||||
btConvexHullShape* createConvexHull(const ShapeInfo::PointList& points) {
|
||||
//std::cout << "adebug createConvexHull() points.size() = " << points.size() << std::endl; // adebug
|
||||
assert(points.size() > 0);
|
||||
|
||||
btConvexHullShape* hull = new btConvexHullShape();
|
||||
|
@ -241,7 +240,6 @@ void deleteStaticMeshArray(btTriangleIndexVertexArray* dataArray) {
|
|||
btCollisionShape* ShapeFactory::createShapeFromInfo(const ShapeInfo& info) {
|
||||
btCollisionShape* shape = NULL;
|
||||
int type = info.getType();
|
||||
//std::cout << "adebug createShapeFromInfo() type = " << type << std::endl; // adebug
|
||||
switch(type) {
|
||||
case SHAPE_TYPE_BOX: {
|
||||
shape = new btBoxShape(glmToBullet(info.getHalfExtents()));
|
||||
|
|
Loading…
Reference in a new issue