Skip to content

Commit

Permalink
refactor(geom-clip-line): update imports
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Sep 10, 2021
1 parent 71cd8c3 commit f0e437c
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions packages/geom-clip-line/src/clip-poly.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import {
intersectLinePolylineAll,
intersectRayPolylineAll,
pointInPolygon2,
} from "@thi.ng/geom-isec";
import { direction, ReadonlyVec, Vec } from "@thi.ng/vectors";
import { intersectLinePolylineAll } from "@thi.ng/geom-isec/line-poly";
import { pointInPolygon2 } from "@thi.ng/geom-isec/point";
import { intersectRayPolylineAll } from "@thi.ng/geom-isec/ray-poly";
import type { ReadonlyVec, Vec } from "@thi.ng/vectors";
import { direction } from "@thi.ng/vectors/direction";

/**
* Computes all intersection points of the infinite line defined by `a`,
Expand Down

0 comments on commit f0e437c

Please sign in to comment.