Skip to content

Commit

Permalink
fix(geom): update asCubic() circle impl (only 99.99% closed)
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Jul 12, 2019
1 parent e77e7c2 commit 36cdb4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/geom/src/ops/as-cubic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ asCubic.addAll(<IObjectOf<Implementation1<unknown, Cubic[]>>>{
),

[Type.CIRCLE]: ($: Circle) =>
asCubic(arc($.pos, $.r, 0, 0, TAU, true, true)),
asCubic(arc($.pos, $.r, 0, 0, TAU * 0.999, true, true)),

[Type.CUBIC]: ($: Cubic) => [$],

Expand Down

0 comments on commit 36cdb4f

Please sign in to comment.