Skip to content

Commit

Permalink
no parallel sdf for js
Browse files Browse the repository at this point in the history
  • Loading branch information
pca006132 committed Nov 15, 2024
1 parent 43e1718 commit e6c9478
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bindings/wasm/helpers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<double (*)(const vec3&)>(funcPtr);
return Manifold::LevelSet(f, bounds, edgeLength, level, tolerance);
return Manifold::LevelSet(f, bounds, edgeLength, level, tolerance, false);
}

std::vector<Manifold> Split(Manifold& a, Manifold& b) {
Expand Down

0 comments on commit e6c9478

Please sign in to comment.