diff --git a/src/shapes/ConvexPolyhedron.ts b/src/shapes/ConvexPolyhedron.ts index e0a90dcf..549afc09 100644 --- a/src/shapes/ConvexPolyhedron.ts +++ b/src/shapes/ConvexPolyhedron.ts @@ -536,7 +536,7 @@ export class ConvexPolyhedron extends Shape { let depth = planeNormalWS.dot(pVtxIn[i]) + planeEqWS // ??? if (depth <= minDist) { - console.log(`clamped: depth=${depth} to minDist=${minDist}`) + // console.log(`clamped: depth=${depth} to minDist=${minDist}`) depth = minDist }