Skip to content

Commit

Permalink
Actualizar index.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
JavierGelatti committed Dec 30, 2024
1 parent 0ba1063 commit 9f38b27
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
import {World} from "./src/world";
import {Arrow, svgDefinitions} from "./src/arrows";

Arrow.linecapSize = 2;

const world = new World();

document.body.append(world.domElement());
document.body.append(
world.domElement(),
svgDefinitions()
);

world.openOutliner({});
world.openOutliner({ x: 1, y: 2 });

0 comments on commit 9f38b27

Please sign in to comment.