basic drawing and initialization

This commit is contained in:
Emma
2023-02-07 11:20:07 -07:00
parent 3a12216482
commit c24bd45718
10 changed files with 944 additions and 3 deletions

8
mod.ts
View File

@@ -1,3 +1,5 @@
export const hello = () => {
console.log('HELLO WORLD');
}
/// <reference types="./global.d.ts" />
export { init as initializeDoodler } from './canvas.ts';
export { Vector } from './geometry/vector.ts';