Skip to content

Commit

Permalink
Fix imports from interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
courtneypattison committed Feb 1, 2024
1 parent 9bdccfe commit a13b6b3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/_components/dimensions-input.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { ChangeEvent } from "react";

import { Unit } from "@/_lib/unit";
import { Unit } from "@/_lib/interfaces/unit";

import LabelledInput from "./labelled-input";
import LabelledRadioInput from "./labelled-radio-input";
Expand Down
2 changes: 1 addition & 1 deletion app/_lib/get-matrix3d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { AbstractMatrix } from "ml-matrix";

import getPerspectiveTransform from "./get-perspective-transform";
import Point from "./point";
import Point from "./interfaces/point";

/**
* Converts 3x3 matrix returned from getPerspectiveTransform(src, dst) to a 4x4 matrix as per https://stackoverflow.com/a/4833408/3376039
Expand Down
2 changes: 1 addition & 1 deletion app/_lib/get-perspective-transform.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

import { Matrix, solve } from "ml-matrix";

import Point from "./point";
import Point from "./interfaces/point";

/** Calculates a perspective transform from four pairs of the corresponding points.
*
Expand Down

0 comments on commit a13b6b3

Please sign in to comment.