Skip to content

Commit

Permalink
refactor(geom-fuzz): update imports
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Oct 8, 2021
1 parent ca56975 commit 11d68ac
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion packages/geom-fuzz/src/comp.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { group } from "@thi.ng/geom/ctors/group";
import { group } from "@thi.ng/geom/group";
import type { FillFn } from "./api";

export const compFill =
Expand Down
2 changes: 1 addition & 1 deletion packages/geom-fuzz/src/dots.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { mergeDeepObj } from "@thi.ng/associative/merge-deep";
import { points } from "@thi.ng/geom/ctors/points";
import { bounds } from "@thi.ng/geom/bounds";
import { pointInside } from "@thi.ng/geom/point-inside";
import { points } from "@thi.ng/geom/points";
import { unmapPoint } from "@thi.ng/geom/unmap-point";
import { range2d } from "@thi.ng/transducers/range2d";
import type { Vec } from "@thi.ng/vectors";
Expand Down
2 changes: 1 addition & 1 deletion packages/geom-fuzz/src/hatch.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { mergeDeepObj } from "@thi.ng/associative/merge-deep";
import type { Rect } from "@thi.ng/geom";
import { clipLinePoly } from "@thi.ng/geom-clip-line/clip-poly";
import { group } from "@thi.ng/geom/ctors/group";
import { bounds } from "@thi.ng/geom/bounds";
import { group } from "@thi.ng/geom/group";
import { offset } from "@thi.ng/geom/offset";
import { unmapPoint } from "@thi.ng/geom/unmap-point";
import { columnEnds2d } from "@thi.ng/grid-iterators/column-ends";
Expand Down
4 changes: 2 additions & 2 deletions packages/geom-fuzz/src/line.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import type { Fn3 } from "@thi.ng/api";
import { mergeDeepObj } from "@thi.ng/associative/merge-deep";
import type { IHiccupShape } from "@thi.ng/geom-api";
import { resample } from "@thi.ng/geom-resample/resample";
import { line } from "@thi.ng/geom/ctors/line";
import { polyline } from "@thi.ng/geom/ctors/polyline";
import { line } from "@thi.ng/geom/line";
import { polyline } from "@thi.ng/geom/polyline";
import type { ReadonlyVec } from "@thi.ng/vectors";
import { jitter } from "@thi.ng/vectors/jitter";
import { DEFAULT_LINE, FuzzyLineOpts } from "./api";
Expand Down
6 changes: 3 additions & 3 deletions packages/geom-fuzz/src/polygon.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { group } from "@thi.ng/geom/ctors/group";
import { pathFromCubics } from "@thi.ng/geom/ctors/path";
import { polygon } from "@thi.ng/geom/ctors/polygon";
import { asCubic } from "@thi.ng/geom/as-cubic";
import { group } from "@thi.ng/geom/group";
import { pathFromCubics } from "@thi.ng/geom/path";
import { polygon } from "@thi.ng/geom/polygon";
import type { ReadonlyVec } from "@thi.ng/vectors";
import type { FuzzyPolygonOpts } from "./api";
import { jitterPoints } from "./points";
Expand Down

0 comments on commit 11d68ac

Please sign in to comment.