Basic plotting using Raphael

This commit is contained in:
Gonzalo Bellver
2011-12-30 15:28:03 -03:00
parent d9d89a24de
commit 9ed6df2158
7 changed files with 88 additions and 6 deletions

View File

@@ -110,7 +110,7 @@ mindplot.nlayout.Node = new Class({
toString: function() {
return "[id:" + this.getId() + ", order:" + this.getOrder() + ", position: {" + this.getPosition().x + "," + this.getPosition().y + "}]";
return "[id:" + this.getId() + ", order:" + this.getOrder() + ", position: {" + this.getPosition().x + "," + this.getPosition().y + "}, size: {" + this.getSize().width + "," + this.getSize().height + "}";
}
});