Skip to content

Commit

Permalink
fix(geom-sdf): internal __sdfAttribs handling
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Sep 23, 2023
1 parent bd36327 commit a86c25e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/geom-sdf/src/as-sdf.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ export const asSDF: MultiFn1<IShape, SDFn> = defmulti<any, SDFn>(

/** @internal */
const __sdfAttribs = (attribs?: Attribs): Partial<SDFAttribs> =>
attribs ? attribs.__sdf : null;
attribs ? attribs.__sdf : undefined;

const OPS = <const>["chamfer", "round", "smooth", "steps"];

Expand Down

0 comments on commit a86c25e

Please sign in to comment.