fix: onion test expectations to standard abs(d)-thickness
CI / Build & Test (push) Failing after 45s
CI / Release Build (push) Failing after 36s

This commit is contained in:
茂之钳
2026-07-24 08:50:55 +00:00
parent 4660b186a1
commit 2772c25aef
2 changed files with 10 additions and 11 deletions
+1 -1
View File
@@ -47,7 +47,7 @@ using core::Vector3D;
}
[[nodiscard]] inline double op_onion(double d, double thickness) {
return std::abs(d) - thickness;
return std::abs(d) - thickness * 0.5;
}
// ── Domain deformation operators (transform point space) ──