Skip to content

Commit

Permalink
build(geom): update geom-clip dep & refs
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Jan 28, 2019
1 parent 004d7f4 commit af099ee
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/geom/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ This package acts as a higher-level front end for the following related packages
- [@thi.ng/geom-api](https://github.com/thi-ng/umbrella/tree/master/packages/geom-api) - shared types & interfaces
- [@thi.ng/geom-accel](https://github.com/thi-ng/umbrella/tree/master/packages/geom-accel) - spatial indexing data structures
- [@thi.ng/geom-arc](https://github.com/thi-ng/umbrella/tree/master/packages/geom-arc) - elliptic arc utils
- [@thi.ng/geom-clip-convex](https://github.com/thi-ng/umbrella/tree/master/packages/geom-clip-convex) - Sutherland-Hodgeman / Liang-Barsky clipping
- [@thi.ng/geom-clip](https://github.com/thi-ng/umbrella/tree/master/packages/geom-clip) - Sutherland-Hodgeman / Liang-Barsky clipping
- [@thi.ng/geom-closest-point](https://github.com/thi-ng/umbrella/tree/master/packages/geom-closest-point) - line-point proximity queries
- [@thi.ng/geom-hull](https://github.com/thi-ng/umbrella/tree/master/packages/geom-hull) - convex hull functions
- [@thi.ng/geom-isec](https://github.com/thi-ng/umbrella/tree/master/packages/geom-isec) - shape intersection tests
Expand Down
2 changes: 1 addition & 1 deletion packages/geom/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"@thi.ng/errors": "^1.0.1",
"@thi.ng/geom-api": "^0.0.1",
"@thi.ng/geom-arc": "^0.0.1",
"@thi.ng/geom-clip-convex": "^0.0.1",
"@thi.ng/geom-clip": "^0.0.1",
"@thi.ng/geom-closest-point": "^0.0.1",
"@thi.ng/geom-hull": "^0.0.1",
"@thi.ng/geom-isec": "^0.0.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/geom/src/ctors/line.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Attribs } from "@thi.ng/geom-api";
import { liangBarsky } from "@thi.ng/geom-clip-convex";
import { liangBarsky } from "@thi.ng/geom-clip";
import { Vec, VecPair } from "@thi.ng/vectors";
import { Line, Rect } from "../api";
import { argAttribs } from "../internal/args";
Expand Down
2 changes: 1 addition & 1 deletion packages/geom/src/ops/clip-convex.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { defmulti } from "@thi.ng/defmulti";
import { IShape, Type } from "@thi.ng/geom-api";
import { sutherlandHodgeman } from "@thi.ng/geom-clip-convex";
import { sutherlandHodgeman } from "@thi.ng/geom-clip";
import { Polygon } from "../api";
import { dispatch } from "../internal/dispatch";
import { centroid } from "./centroid";
Expand Down

0 comments on commit af099ee

Please sign in to comment.