diff --git a/bindings/wasm/helpers.cpp b/bindings/wasm/helpers.cpp index 66bf70b9e..c9104017a 100644 --- a/bindings/wasm/helpers.cpp +++ b/bindings/wasm/helpers.cpp @@ -208,7 +208,7 @@ Manifold SetProperties(Manifold& manifold, int numProp, uintptr_t funcPtr) { Manifold LevelSet(uintptr_t funcPtr, Box bounds, double edgeLength, double level, double tolerance) { double (*f)(const vec3&) = reinterpret_cast(funcPtr); - return Manifold::LevelSet(f, bounds, edgeLength, level, tolerance); + return Manifold::LevelSet(f, bounds, edgeLength, level, tolerance, false); } std::vector Split(Manifold& a, Manifold& b) {