Skip to content

Commit

Permalink
fix things
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeldking committed Jun 15, 2023
1 parent dc27c90 commit 6607029
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 17 deletions.
2 changes: 1 addition & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module.exports = {
presets: ['@babel/preset-env', '@babel/preset-react'],
presets: ['@babel/preset-env'],
};
11 changes: 0 additions & 11 deletions test/TwoDimensionalCanvas.test.tsx

This file was deleted.

2 changes: 1 addition & 1 deletion test/getCenterFromThreeDimensionalBounds.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
getThreeDimensionalBounds,
getCenterFromThreeDimensionalBounds,
} from '../src';
} from '../src/utils';

describe('getCenterFromThreeDimensionalBounds', () => {
it('Should help compute the center of bounds', () => {
Expand Down
2 changes: 1 addition & 1 deletion test/getCenterFromTwoDimensionalBounds.test.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
getTwoDimensionalBounds,
getCenterFromTwoDimensionalBounds,
} from '../src';
} from '../src/utils';

describe('getCenterFromTwoDimensionalBounds', () => {
it('Should help compute the center of bounds', () => {
Expand Down
2 changes: 1 addition & 1 deletion test/getThreeDimensionalBounds.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { getThreeDimensionalBounds } from '../src';
import { getThreeDimensionalBounds } from '../src/utils/threeDimensionalUtils';

describe('getThreeDimensionalBounds', () => {
it('Should get the extent of points', () => {
Expand Down
2 changes: 1 addition & 1 deletion test/getTwoDimensionalBounds.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { getTwoDimensionalBounds } from '../src';
import { getTwoDimensionalBounds } from '../src/utils/twoDimensionalUtils';

describe('getTwoDimensionalBounds', () => {
it('Should get the extent of points', () => {
Expand Down
2 changes: 1 addition & 1 deletion test/isPointInsidePolygon.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { isPointInsidePolygon } from '../src';
import { isPointInsidePolygon } from '../src/utils/twoDimensionalUtils';

describe('isPointInsidePolygon', () => {
it('Should detect points within a polygon', () => {
Expand Down

0 comments on commit 6607029

Please sign in to comment.