From 4912ebe832d558a81254e5676cef1bb7a838245b Mon Sep 17 00:00:00 2001 From: Frank Date: Wed, 14 Sep 2022 11:54:23 -0400 Subject: [PATCH] Update ConvexPolyhedron.ts remove console.log message that sometimes appears --- src/shapes/ConvexPolyhedron.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }