Skip to content

Commit

Permalink
refactor(color): update imports (transducers)
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Sep 20, 2021
1 parent 09fb93e commit 0bc002c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions packages/color/src/ops/cosine-gradients.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ import type { FnU, FnU2, NumericArray } from "@thi.ng/api";
import { partial } from "@thi.ng/compose/partial";
import { TAU } from "@thi.ng/math/api";
import { clamp01 } from "@thi.ng/math/interval";
import { comp } from "@thi.ng/transducers/func/comp";
import { normRange } from "@thi.ng/transducers/iter/norm-range";
import { tween } from "@thi.ng/transducers/iter/tween";
import { zip } from "@thi.ng/transducers/iter/zip";
import { push } from "@thi.ng/transducers/rfn/push";
import { comp } from "@thi.ng/transducers/comp";
import { map } from "@thi.ng/transducers/map";
import { noop } from "@thi.ng/transducers/noop";
import { normRange } from "@thi.ng/transducers/norm-range";
import { push } from "@thi.ng/transducers/push";
import { transduce } from "@thi.ng/transducers/transduce";
import { map } from "@thi.ng/transducers/xform/map";
import { noop } from "@thi.ng/transducers/xform/noop";
import { tween } from "@thi.ng/transducers/tween";
import { zip } from "@thi.ng/transducers/zip";
import { setS4 } from "@thi.ng/vectors/sets";
import type { Color, ReadonlyColor } from "../api";
import type {
Expand Down
2 changes: 1 addition & 1 deletion packages/color/src/ops/gradients.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { NumericArray } from "@thi.ng/api";
import { tween } from "@thi.ng/transducers/iter/tween";
import { tween } from "@thi.ng/transducers/tween";
import { setS4 } from "@thi.ng/vectors/sets";
import type { TypedColor } from "../api";
import type { GradientOpts } from "../api/gradients";
Expand Down

0 comments on commit 0bc002c

Please sign in to comment.