Skip to content

Commit

Permalink
🚀 Make complexviewer esbuild compatible for Point2D and intersectionjs
Browse files Browse the repository at this point in the history
  • Loading branch information
EliotRagueneau committed Aug 14, 2024
1 parent d75237c commit 8d91e4d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion dist/complexviewer.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/js/viz/interactor/complex.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {Interactor} from "./interactor";
import * as Point2D from "point2d";
import * as Intersection from "intersectionjs";
import Point2D from "point2d";
import Intersection from "intersectionjs";

export class Complex extends Interactor {
constructor(id, app) {
Expand Down
4 changes: 2 additions & 2 deletions src/js/viz/link/binary-link.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as Intersection from "intersectionjs";
import * as Point2D from "point2d";
import Intersection from "intersectionjs";
import Point2D from "point2d";
import {HideableLink} from "./hideable-link";

export class BinaryLink extends HideableLink {
Expand Down
3 changes: 0 additions & 3 deletions src/js/viz/link/feature-link.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
import {Link} from "./link";
import {svgns} from "../../svgns";
// import * as Point2D from "point2d";
// import * as Intersection from "intersectionjs";

export class FeatureLink extends Link {
constructor(id, fromFeatPos, toFeatPos, app) {
Expand Down

0 comments on commit 8d91e4d

Please sign in to comment.