Files
architype/render.js

9 lines
191 B
JavaScript
Raw Normal View History

function render(def) {
let graph = new Graph(def);
let layout = new Layout(graph);
return layout.getDrawSteps();
2019-07-03 03:24:15 +00:00
}
<!--# include file="Graph.js" -->
<!--# include file="Layout.js" -->