Added Floid algorithm.

This commit is contained in:
Unick Soft
2017-12-10 22:01:46 +03:00
parent d6d27397a4
commit 6a6919b2f1
8 changed files with 290 additions and 3 deletions

View File

@@ -109,6 +109,17 @@ BaseAlgorithm.prototype.needRestoreUpText = function()
return true;
}
// @return true, if you change resotry graph after use.
BaseAlgorithm.prototype.wantRestore = function()
{
return false;
}
// calls this method if wantRestore return true.
BaseAlgorithm.prototype.restore = function()
{
}
// @return 0, if object is not selected, in other case return groupe of selection.
BaseAlgorithm.prototype.getObjectSelectedGroup = function(object)
{