UNPKG

@thi.ng/shader-ast-stdlib

Version:

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

7 lines (6 loc) 175 B
import { sub } from "@thi.ng/shader-ast/ast/ops"; import { abs } from "@thi.ng/shader-ast/builtin/math"; const sdfAnnular = (d, r) => sub(abs(d), r); export { sdfAnnular };