DatatypeNode.js
Home
/
src /
webvowl /
js /
elements /
nodes /
DatatypeNode.js
var RectangularNode = require("./RectangularNode");
module.exports = (function (){
var o = function ( graph ){
RectangularNode.apply(this, arguments);
};
o.prototype = Object.create(RectangularNode.prototype);
o.prototype.constructor = o;
return o;
}());