rename file

This commit is contained in:
Orion Reed 2024-12-06 15:25:44 -05:00
parent 67a3d23b4d
commit 0b475fd352
4 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
import { expect, test, describe } from 'bun:test'; import { expect, test, describe } from 'bun:test';
import { TransformDOMRect } from '../common/transform-dom-rect'; import { TransformDOMRect } from '../common/TransformDOMRect';
import { Vector } from '../common/Vector'; import { Vector } from '../common/Vector';
// Helper for comparing points with floating point values // Helper for comparing points with floating point values

View File

@ -2,7 +2,7 @@
import { Vector } from './common/Vector.ts'; import { Vector } from './common/Vector.ts';
import type { Point } from './common/types.ts'; import type { Point } from './common/types.ts';
import { TransformDOMRect } from './common/transform-dom-rect.ts'; import { TransformDOMRect } from './common/TransformDOMRect.ts';
import { FolkBaseConnection } from './folk-base-connection.ts'; import { FolkBaseConnection } from './folk-base-connection.ts';
const lerp = (first: number, second: number, percentage: number) => first + (second - first) * percentage; const lerp = (first: number, second: number, percentage: number) => first + (second - first) * percentage;

View File

@ -1,7 +1,7 @@
import { css, html } from './common/tags'; import { css, html } from './common/tags';
import { ResizeObserverManager } from './common/resize-observer'; import { ResizeObserverManager } from './common/resize-observer';
import { Point } from './common/types'; import { Point } from './common/types';
import { TransformDOMRectReadonly } from './common/transform-dom-rect'; import { TransformDOMRectReadonly } from './common/TransformDOMRect';
import { Vector } from './common/Vector'; import { Vector } from './common/Vector';
import { getResizeCursorUrl, getRotateCursorUrl } from './common/cursors'; import { getResizeCursorUrl, getRotateCursorUrl } from './common/cursors';