diff --git a/src/script-graph2.ts b/src/script-graph2.ts index c318d84..795957c 100644 --- a/src/script-graph2.ts +++ b/src/script-graph2.ts @@ -6,6 +6,8 @@ import { property } from "lit-element"; +import { mdiPlus } from "@mdi/js"; + const SIZE = 35; const DIST = 20; @@ -39,6 +41,19 @@ class ScriptGraph2 extends LitElement { `; } + private _draw_new_node(x, y, node) { + return svg` + + `; + } + + private _draw_connector(x1, y1, x2, y2) { return svg`