diff --git a/packages/color/src/ops/cosine-gradients.ts b/packages/color/src/ops/cosine-gradients.ts index a053687cc9..ca2a034428 100644 --- a/packages/color/src/ops/cosine-gradients.ts +++ b/packages/color/src/ops/cosine-gradients.ts @@ -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 { diff --git a/packages/color/src/ops/gradients.ts b/packages/color/src/ops/gradients.ts index 570a0f567d..3484990dda 100644 --- a/packages/color/src/ops/gradients.ts +++ b/packages/color/src/ops/gradients.ts @@ -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";