@@ -3,6 +3,10 @@
function ConnectionLine(src)
{
Object2D.call(this);
+
+ this.from = new Vector2();
+ this.to = new Vector2();
}
ConnectionLine.prototype = Object.create(Object2D.prototype);