@ -435,6 +435,7 @@ Network.prototype.findNode = function() {return this.clustering.findN
Network . prototype . isCluster = function ( ) { return this . clustering . isCluster . apply ( this . clustering , arguments ) ; } ;
Network . prototype . isCluster = function ( ) { return this . clustering . isCluster . apply ( this . clustering , arguments ) ; } ;
Network . prototype . openCluster = function ( ) { return this . clustering . openCluster . apply ( this . clustering , arguments ) ; } ;
Network . prototype . openCluster = function ( ) { return this . clustering . openCluster . apply ( this . clustering , arguments ) ; } ;
Network . prototype . cluster = function ( ) { return this . clustering . cluster . apply ( this . clustering , arguments ) ; } ;
Network . prototype . cluster = function ( ) { return this . clustering . cluster . apply ( this . clustering , arguments ) ; } ;
Network . prototype . getNodesInCluster = function ( ) { return this . clustering . getNodesInCluster . apply ( this . clustering , arguments ) ; } ;
Network . prototype . clusterByConnection = function ( ) { return this . clustering . clusterByConnection . apply ( this . clustering , arguments ) ; } ;
Network . prototype . clusterByConnection = function ( ) { return this . clustering . clusterByConnection . apply ( this . clustering , arguments ) ; } ;
Network . prototype . clusterByHubsize = function ( ) { return this . clustering . clusterByHubsize . apply ( this . clustering , arguments ) ; } ;
Network . prototype . clusterByHubsize = function ( ) { return this . clustering . clusterByHubsize . apply ( this . clustering , arguments ) ; } ;
Network . prototype . clusterOutliers = function ( ) { return this . clustering . clusterOutliers . apply ( this . clustering , arguments ) ; } ;
Network . prototype . clusterOutliers = function ( ) { return this . clustering . clusterOutliers . apply ( this . clustering , arguments ) ; } ;
@ -443,7 +444,7 @@ Network.prototype.enableEditMode = function() {return this.manipulation.ena
Network . prototype . disableEditMode = function ( ) { return this . manipulation . disableEditMode . apply ( this . manipulation , arguments ) ; } ;
Network . prototype . disableEditMode = function ( ) { return this . manipulation . disableEditMode . apply ( this . manipulation , arguments ) ; } ;
Network . prototype . addNodeMode = function ( ) { return this . manipulation . addNodeMode . apply ( this . manipulation , arguments ) ; } ;
Network . prototype . addNodeMode = function ( ) { return this . manipulation . addNodeMode . apply ( this . manipulation , arguments ) ; } ;
Network . prototype . editNode = function ( ) { return this . manipulation . editNode . apply ( this . manipulation , arguments ) ; } ;
Network . prototype . editNode = function ( ) { return this . manipulation . editNode . apply ( this . manipulation , arguments ) ; } ;
Network . prototype . editNodeMode = function ( ) { console . log ( "please use editNode instead of editNodeMode" ) ; return this . manipulation . editNode . apply ( this . manipulation , arguments ) ; } ;
Network . prototype . editNodeMode = function ( ) { console . log ( "De pricated: P lease use editNode instead of editNodeMode. " ) ; return this . manipulation . editNode . apply ( this . manipulation , arguments ) ; } ;
Network . prototype . addEdgeMode = function ( ) { return this . manipulation . addEdgeMode . apply ( this . manipulation , arguments ) ; } ;
Network . prototype . addEdgeMode = function ( ) { return this . manipulation . addEdgeMode . apply ( this . manipulation , arguments ) ; } ;
Network . prototype . editEdgeMode = function ( ) { return this . manipulation . editEdgeMode . apply ( this . manipulation , arguments ) ; } ;
Network . prototype . editEdgeMode = function ( ) { return this . manipulation . editEdgeMode . apply ( this . manipulation , arguments ) ; } ;
Network . prototype . deleteSelected = function ( ) { return this . manipulation . deleteSelected . apply ( this . manipulation , arguments ) ; } ;
Network . prototype . deleteSelected = function ( ) { return this . manipulation . deleteSelected . apply ( this . manipulation , arguments ) ; } ;
@ -458,7 +459,7 @@ Network.prototype.getConnectedNodes = function(objectId) {
return this . edgesHandler . getConnectedNodes . apply ( this . edgesHandler , arguments ) ;
return this . edgesHandler . getConnectedNodes . apply ( this . edgesHandler , arguments ) ;
}
}
} ;
} ;
Network . prototype . getEdges = function ( ) { return this . nodesHandler . getEdges . apply ( this . nodesHandler , arguments ) ; } ;
Network . prototype . getConnected Edges = function ( ) { return this . nodesHandler . getConnected Edges . apply ( this . nodesHandler , arguments ) ; } ;
Network . prototype . startSimulation = function ( ) { return this . physics . startSimulation . apply ( this . physics , arguments ) ; } ;
Network . prototype . startSimulation = function ( ) { return this . physics . startSimulation . apply ( this . physics , arguments ) ; } ;
Network . prototype . stopSimulation = function ( ) { return this . physics . stopSimulation . apply ( this . physics , arguments ) ; } ;
Network . prototype . stopSimulation = function ( ) { return this . physics . stopSimulation . apply ( this . physics , arguments ) ; } ;
Network . prototype . stabilize = function ( ) { return this . physics . stabilize . apply ( this . physics , arguments ) ; } ;
Network . prototype . stabilize = function ( ) { return this . physics . stabilize . apply ( this . physics , arguments ) ; } ;