Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
yzrmn committed Aug 27, 2024
1 parent 3388e8e commit e01c5c9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/redgeometry/src/primitives/quaternion.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertUnreachable } from "../index.js";
import { assertUnreachable } from "../utility/debug.js";
import { Point3 } from "./point.js";
import { Vector3 } from "./vector.js";

Expand Down
2 changes: 1 addition & 1 deletion packages/redgeometry/tests/primitives/matrix.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { expect, test } from "vitest";
import { Complex } from "../../src/index.js";
import { Complex } from "../../src/primitives/complex.js";
import { Matrix3, Matrix3A, Matrix4, Matrix4A } from "../../src/primitives/matrix.js";
import { Point2, Point3 } from "../../src/primitives/point.js";
import { Quaternion, RotationOrder } from "../../src/primitives/quaternion.js";
Expand Down
2 changes: 1 addition & 1 deletion packages/redgeometry/tests/utility/set.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { expect, test } from "vitest";
import { Bitset } from "../../src/index.js";
import { Bitset } from "../../src/utility/set.js";

test("BitSet.eq", () => {
const b1 = Bitset.fromElements([0]);
Expand Down

0 comments on commit e01c5c9

Please sign in to comment.