Home
last modified time | relevance | path

Searched refs:groupCell (Results 1 – 2 of 2) sorted by relevance

/plugin/diagramsnet/lib/plugins/webcola/
H A DmxWebColaLayout.js135 mxWebColaLayout.prototype.getGroupBounds = function(model, groupCell) argument
147 if (groupCell.children == null || groupCell.children.length == 0)
150 cellsToVisit = cellsToVisit.concat(groupCell.children);
188 var groupGeometry = model.getGeometry(groupCell);
196 var bounds = model.getGeometry(groupCell).clone();
204 mxWebColaLayout.prototype.adjustChildOffsets = function(model, groupCell, isUndoable, isInitial) argument
211 if (groupCell.children == null || groupCell.children.length == 0)
214 var groupBounds = model.getGeometry(groupCell);
218 cellsToVisit = cellsToVisit.concat(groupCell.children);
H A DmxWebColaAdaptor.js593 mxWebColaAdaptor.prototype.isZeroConnected = function(groupCell) argument
600 var groupDegree = this.groupDegrees.get(groupCell);
601 console.log("Group " + groupCell.id + " degree: " + groupDegree);
702 mxWebColaAdaptor.prototype.getActiveVerticesInGroup = function(groupCell, activeVertices, includeCo… argument
711 if (includeCollapsedGroups && this.isLeafOrCollapsed(groupCell))
713 activeChildren.push(groupCell);
715 var cellsToExplore = [groupCell];
741 mxWebColaAdaptor.prototype.getAllVerticesInGroup = function(groupCell, includeCollapsedGroups) argument
750 if (includeCollapsedGroups && this.isLeafOrCollapsed(groupCell))
752 result.push(groupCell);
[all …]