UNPKG

@thi.ng/shader-ast-stdlib

Version:

Function collection for modular GPGPU / shader programming with @thi.ng/shader-ast

7 lines (6 loc) 213 B
import { neg } from "@thi.ng/shader-ast/ast/ops"; import { max } from "@thi.ng/shader-ast/builtin/math"; const sdfSubtract = (a, ...terms) => terms.reduce((a2, b) => max(a2, neg(b)), a); export { sdfSubtract };