Simple rendering of class diagrams

This commit is contained in:
knsv
2015-10-30 11:34:24 +01:00
parent eec89e0442
commit 068b7ce6a9
11 changed files with 4732 additions and 932 deletions

View File

@@ -3,8 +3,12 @@ import * as Logger from '../../logger';
var log = new Logger.Log();
var relations = [];
let classes = new Map();
let classes;
var idCache;
if(typeof Map !== 'undefined'){
classes = new Map();
}
// Functions to be run after graph rendering
var funs = [];
/**