Added algorithm of visualization of graph based on weight and vertex degree.

This commit is contained in:
Unick Soft
2017-05-06 20:35:59 +03:00
parent c9098412c7
commit 063bfc91ec
4 changed files with 142 additions and 13 deletions

View File

@@ -11,10 +11,10 @@ function BaseVertex(x, y, vertexEnumType)
this.mainText = "";
this.upText = "";
this.vertexEnumType = vertexEnumType;
this.model = new VertexModel();
};
BaseVertex.prototype.position = new Point(0, 0);
BaseVertex.prototype.model = new VertexModel();
BaseVertex.prototype.SaveToXML = function ()
{