Skip to content

Commit

Permalink
refactor(geom-voronoi): update geom-clip deps & imports
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Feb 15, 2020
1 parent 782193f commit 26bc558
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/geom-voronoi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@
"dependencies": {
"@thi.ng/api": "^6.7.1",
"@thi.ng/checks": "^2.5.0",
"@thi.ng/geom-clip": "^0.1.12",
"@thi.ng/geom-clip-line": "^0.0.1",
"@thi.ng/geom-clip-poly": "^0.0.1",
"@thi.ng/geom-isec": "^0.4.1",
"@thi.ng/geom-poly-utils": "^0.1.30",
"@thi.ng/math": "^1.6.0",
Expand Down
3 changes: 2 additions & 1 deletion packages/geom-voronoi/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { IObjectOf, Pair } from "@thi.ng/api";
import { isNumber } from "@thi.ng/checks";
import { liangBarsky2, sutherlandHodgeman } from "@thi.ng/geom-clip";
import { liangBarsky2 } from "@thi.ng/geom-clip-line";
import { sutherlandHodgeman } from "@thi.ng/geom-clip-poly";
import { pointInCircumCircle, pointInPolygon2, pointInSegment } from "@thi.ng/geom-isec";
import { centroid, circumCenter2 } from "@thi.ng/geom-poly-utils";
import { EPS } from "@thi.ng/math";
Expand Down

0 comments on commit 26bc558

Please sign in to comment.