Skip to content

Commit

Permalink
refactor(geom-isec): update imports
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Sep 10, 2021
1 parent 766afe9 commit 198a149
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/geom-isec/src/point.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import { clamp01 } from "@thi.ng/math/interval";
import type { MultiVecOpImpl, ReadonlyVec } from "@thi.ng/vectors";
import { clockwise2 } from "@thi.ng/vectors/clockwise";
import { distSq } from "@thi.ng/vectors/distsq";
import { vop } from "@thi.ng/vectors/internal/vop";
import { magSq } from "@thi.ng/vectors/magsq";
import { mixN } from "@thi.ng/vectors/mixn";
import { signedArea2 } from "@thi.ng/vectors/signed-area";
import { vop } from "@thi.ng/vectors/vop";

export const pointInSegment = (
p: ReadonlyVec,
Expand Down
2 changes: 1 addition & 1 deletion packages/geom-isec/src/rect-circle.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Fn4, FnN3 } from "@thi.ng/api";
import type { MultiVecOpImpl, ReadonlyVec } from "@thi.ng/vectors";
import { vop } from "@thi.ng/vectors/internal/vop";
import { vop } from "@thi.ng/vectors/vop";

export const testBoxSphere: MultiVecOpImpl<
Fn4<ReadonlyVec, ReadonlyVec, ReadonlyVec, number, boolean>
Expand Down

0 comments on commit 198a149

Please sign in to comment.