10 lines
467 B
JavaScript
10 lines
467 B
JavaScript
import { Box } from '../classes/display/box.js';
|
|
import { Scene } from '../classes/display/scene.js';
|
|
import { WeightedDirectedGraph } from '../classes/supporting/wdg.js';
|
|
|
|
const rootElement = document.getElementById('scene');
|
|
const rootBox = new Box('rootBox', rootElement).flex();
|
|
window.disableSceneControls = true;
|
|
window.scene = new Scene('WDG Editor', rootBox);
|
|
window.graph = new WeightedDirectedGraph('new', window.scene, { editable: true }).withFlowchart();
|