GraphLab Project

Uses of Class
graphlab.graph.graph.GraphModel

Packages that use GraphModel
graphlab.extensions.io   
graphlab.extensions.reports   
graphlab.graph   
graphlab.graph.atributeset   
graphlab.graph.event   
graphlab.graph.graph   
graphlab.graph.io   
graphlab.graph.old   
graphlab.graph.ui   
graphlab.plugins.commandline.commands   
graphlab.plugins.graphgenerator   
graphlab.plugins.graphgenerator.core   
graphlab.plugins.graphgenerator.core.extension   
graphlab.plugins.graphgenerator.generators   
graphlab.plugins.main   
graphlab.plugins.main.ccp   
graphlab.plugins.main.core   
graphlab.plugins.main.core.actions   
graphlab.plugins.main.core.actions.edge   
graphlab.plugins.main.core.actions.graph   
graphlab.plugins.main.core.actions.vertex   
graphlab.plugins.main.saveload   
graphlab.plugins.main.saveload.core   
graphlab.plugins.main.saveload.image   
graphlab.plugins.main.saveload.matrix   
graphlab.plugins.main.saveload.xmlparser   
graphlab.plugins.main.select   
graphlab.plugins.reports   
graphlab.plugins.reports.basicreports   
graphlab.plugins.visualization.circular   
graphlab.plugins.visualization.corebasics   
graphlab.plugins.visualization.corebasics.animator   
graphlab.plugins.visualization.hierarchical   
graphlab.plugins.visualization.treevisualizations   
graphlab.samples.extensions   
 

Uses of GraphModel in graphlab.extensions.io
 

Methods in graphlab.extensions.io that return GraphModel
 GraphModel LoadSimpleGraph.read(java.io.File file)
           
 

Methods in graphlab.extensions.io with parameters of type GraphModel
 void LatexWriter.write(java.io.File file, GraphModel graph)
           
 void SaveSimpleGraph.write(java.io.File file, GraphModel graph)
           
 void LatexCAD.write(java.io.File file, GraphModel graph)
           
 

Uses of GraphModel in graphlab.extensions.reports
 

Methods in graphlab.extensions.reports with parameters of type GraphModel
static java.util.Vector<java.util.ArrayDeque<BaseVertex>> MaxIndependentSetReport.getMaxIndependentSet(GraphModel graph)
           
static int MaxIndependentSetReport.getMaxIndependentSetSize(GraphModel graph, boolean putFirstVertexInSet)
           
 

Uses of GraphModel in graphlab.graph
 

Methods in graphlab.graph that return GraphModel
 GraphModel JGraph.getGraph()
           
 

Methods in graphlab.graph with parameters of type GraphModel
static GraphPoint GraphUtils.createGraphPoint(GraphModel g, int viewx, int viewy)
          creates a new graph point from the given point according too graph zoom, The input x and y are typically are directly from view, notice that inside the GraphLab everything are GraphPoint, so they are independent of zoom use this method only if you want to convert a view point to graph point!
static java.awt.Point GraphUtils.createViewPoint(GraphModel g, GraphPoint p)
           
static java.awt.Rectangle GraphUtils.createViewRectangle(GraphModel g, java.awt.Rectangle r)
           
static boolean GraphUtils.isPointOnVertex(GraphModel g, VertexModel v, GraphPoint p)
           
static Pair<EdgeModel,java.lang.Double> GraphUtils.mindiste(GraphModel g, GraphPoint p)
           
static Pair<VertexModel,java.lang.Double> GraphUtils.mindistv(GraphModel g, GraphPoint p)
           
 

Constructors in graphlab.graph with parameters of type GraphModel
JGraph(GraphModel g, AbstractGraphRenderer view)
           
 

Uses of GraphModel in graphlab.graph.atributeset
 

Constructors in graphlab.graph.atributeset with parameters of type GraphModel
GraphAttrSet(GraphModel g)
           
GraphNotifiableAttrSet(GraphModel g)
           
 

Uses of GraphModel in graphlab.graph.event
 

Fields in graphlab.graph.event declared as GraphModel
 GraphModel GraphSelectData.g
           
 GraphModel GraphEvent.graph
           
 

Methods in graphlab.graph.event with parameters of type GraphModel
static GraphEvent GraphEvent.dragging(GraphModel g, GraphPoint mousePos, int mouseBtn, int modifiersEx)
           
static GraphEvent GraphEvent.graphNotified(GraphModel g, int modifiersEx)
           
static GraphEvent GraphEvent.graphUnNotified(GraphModel g, int modifiersEx)
           
static GraphEvent GraphEvent.mouseClicked(GraphModel g, GraphPoint mousePos, int mouseBtn, int modifiersEx)
           
static GraphEvent GraphEvent.mouseDraggingStarted(GraphModel g, GraphPoint mousePos, int mouseBtn, int modifiersEx)
           
static GraphEvent GraphEvent.mouseDropped(GraphModel g, GraphPoint mousePos, int mouseBtn, int modifiersEx)
           
static GraphEvent GraphEvent.mouseEntered(GraphModel g, GraphPoint mousePos, int mouseBtn, int modifiersEx)
           
static GraphEvent GraphEvent.mouseExited(GraphModel g, GraphPoint mousePos, int mouseBtn, int modifiersEx)
           
static GraphEvent GraphEvent.mouseMoved(GraphModel g, GraphPoint mousePos, int mouseBtn, int modifiersEx)
           
static GraphEvent GraphEvent.mouseWheelMoved(GraphModel g, GraphPoint mousePos, int mouseWheelMoveAmount, int modifiersEx)
           
 

Constructors in graphlab.graph.event with parameters of type GraphModel
GraphEvent(int eventType, GraphModel e, GraphPoint mousePos, int mouseBtn_or_mouseWheelMoveAmount, boolean isNotified, boolean isMouseEntered, boolean isDragged, int modifiersEx)
           
 

Uses of GraphModel in graphlab.graph.graph
 

Fields in graphlab.graph.graph declared as GraphModel
 GraphModel GraphColoring.graph
           
 GraphModel SubGraph.graph
           
 

Methods in graphlab.graph.graph that return GraphModel
 GraphModel GraphModel.createEmptyGraph()
           
 GraphModel AbstractGraphRenderer.getGraph()
           
 

Methods in graphlab.graph.graph with parameters of type GraphModel
 void GraphModel.addSubGraph(GraphModel graph, java.awt.Rectangle _rect)
          adds graph to this graph and place it in the given rectangle
static boolean GraphControl.isPointOnVertex(GraphModel g, VertexModel v, GraphPoint p)
           
 Pair GraphControlGrid.mindiste(GraphModel g, GraphPoint p)
           
static Pair<EdgeModel,java.lang.Double> GraphControl.mindiste(GraphModel g, GraphPoint p)
           
static Pair<VertexModel,java.lang.Double> GraphControl.mindistv(GraphModel g, GraphPoint p)
           
 void FastRenderer.paint(java.awt.Graphics2D g, EdgeModel model, GraphModel graph, java.lang.Boolean drawExtras)
           
 void AbstractGraphRenderer.setGraph(GraphModel g)
           
 void FastRenderer.setGraph(GraphModel g)
           
 

Constructors in graphlab.graph.graph with parameters of type GraphModel
FastRenderer(GraphModel g, BlackBoard blackboard)
           
GraphColoring(GraphModel graph)
           
GraphControl(GraphModel g, javax.swing.JPanel gv, BlackBoard bb)
           
GraphControlGrid(GraphModel g)
           
SubGraph(GraphModel graph)
           
 

Uses of GraphModel in graphlab.graph.io
 

Methods in graphlab.graph.io with parameters of type GraphModel
static java.lang.String GraphML.graph2GraphML(GraphModel g)
           
 

Uses of GraphModel in graphlab.graph.old
 

Constructors in graphlab.graph.old with parameters of type GraphModel
AcceleratedRenderer(GraphModel g, BlackBoard blackboard)
           
LayeredRenderer(GraphModel g, BlackBoard blackboard)
           
SuperAcceleratedRenderer(GraphModel g, BlackBoard blackboard)
           
 

Uses of GraphModel in graphlab.graph.ui
 

Methods in graphlab.graph.ui with parameters of type GraphModel
 void GTabbedGraphPane.addGraph(GraphModel g)
          create a tab for the given graph, the name of tab will be "G" + graph label
 

Uses of GraphModel in graphlab.plugins.commandline.commands
 

Methods in graphlab.plugins.commandline.commands that return GraphModel
 GraphModel GraphCommands.edge_induced(GraphModel g)
           
 GraphModel GraphCommands.getCurrentGraph()
           
 GraphModel GraphCommands.gunion(GraphModel g1, GraphModel g2)
           
 GraphModel GraphCommands.induced(GraphModel g, java.lang.Object[] c)
           
 

Methods in graphlab.plugins.commandline.commands with parameters of type GraphModel
 void GraphCommands.cartesian_product(GraphModel g1, GraphModel g2)
           
 GraphModel GraphCommands.edge_induced(GraphModel g)
           
 VertexModel GraphCommands.getVertexById(int id, GraphModel g)
           
 java.lang.String NativeCommands.ghomomorph(GraphModel g1, GraphModel g2)
           
 void GraphCommands.gjoin(GraphModel g1, GraphModel g2)
           
 GraphModel GraphCommands.gunion(GraphModel g1, GraphModel g2)
           
 GraphModel GraphCommands.induced(GraphModel g, java.lang.Object[] c)
           
 void GraphCommands.product(GraphModel g1, GraphModel g2)
           
 void GraphCommands.showGraph(GraphModel g)
           
 

Uses of GraphModel in graphlab.plugins.graphgenerator
 

Methods in graphlab.plugins.graphgenerator that return GraphModel
static GraphModel GraphGenerator.generateCircle(int n)
           
static GraphModel GraphGenerator.generateCmn(int m, int n)
           
static GraphModel GraphGenerator.generateCompleteGraph(int n)
           
static GraphModel GraphGenerator.generateGeneralizedPeterson(int n, int k)
           
static GraphModel GraphGenerator.generateKenserGraph(int n, int d)
           
static GraphModel GraphGenerator.generateKmn(int m, int n)
           
static GraphModel GraphGenerator.generatePath(int n)
           
static GraphModel GraphGenerator.generatePmn(int m, int n)
           
static GraphModel GraphGenerator.generateRandomGraph(int n, int e)
           
static GraphModel GraphGenerator.generateStar(int n)
           
static GraphModel GraphGenerator.generateTree(int depth, int degree)
           
static GraphModel GraphGenerator.generateWheel(int n)
           
static GraphModel GraphGenerator.getGraph(boolean isDirected, SimpleGeneratorInterface gi)
          generates and return a graph from the given interface, not showing it on GUI
 

Uses of GraphModel in graphlab.plugins.graphgenerator.core
 

Methods in graphlab.plugins.graphgenerator.core that return GraphModel
 GraphModel GraphGeneratorInterface.generateGraph()
           
 

Methods in graphlab.plugins.graphgenerator.core with parameters of type GraphModel
 void SimpleGeneratorInterface.setWorkingGraph(GraphModel g)
           
 

Uses of GraphModel in graphlab.plugins.graphgenerator.core.extension
 

Methods in graphlab.plugins.graphgenerator.core.extension that return GraphModel
 GraphModel GraphGeneratorExtensionAction.performExtensionInCommandLine()
           
 

Uses of GraphModel in graphlab.plugins.graphgenerator.generators
 

Methods in graphlab.plugins.graphgenerator.generators that return GraphModel
static GraphModel BananaTreeGenerator.generateBananaTree(int n, int k)
           
static GraphModel CircleGenerator.generateCircle(int n)
          generates a Circle Graph with given parameters
static GraphModel CmnGenerator.generateCmn(int m, int n)
          generates a Cm*Cn Graph with given parameters
static GraphModel CompleteGraphGenerator.generateCompleteGraph(int n)
          generates a Complete Graph with given parameters
static GraphModel GeneralizedPetersonGenerator.generateGeneralizedPeterson(int n, int k)
          generates a Generalized Peterson Graph with given parameters
 GraphModel PrismGraph.generateGraph()
           
 GraphModel WheelGenerator.generateGraph()
           
 GraphModel KmnoGenerator.generateGraph()
           
 GraphModel BananaTreeGenerator.generateGraph()
           
 GraphModel HelmGraph.generateGraph()
           
 GraphModel KmnGenerator.generateGraph()
           
 GraphModel CircleGenerator.generateGraph()
           
 GraphModel RandomTreeGenerator.generateGraph()
           
 GraphModel RandomGenerator.generateGraph()
           
 GraphModel TreeGenerator.generateGraph()
           
 GraphModel CmnGenerator.generateGraph()
           
 GraphModel PathGenerator.generateGraph()
           
 GraphModel PmnGenerator.generateGraph()
           
 GraphModel CompleteGraphGenerator.generateGraph()
           
 GraphModel StarGenerator.generateGraph()
           
 GraphModel KenserGraphGenerator.generateGraph()
           
 GraphModel GeneralizedPetersonGenerator.generateGraph()
           
static GraphModel HelmGraph.generateHelm(int n)
          generates a Helm Graph with given parameters
static GraphModel KenserGraphGenerator.generateKenserGraph(int n, int d)
          generates a kenser Graph with given parameters
static GraphModel KmnGenerator.generateKmn(int m, int n)
          generates a Km,n Graph with given parameters
static GraphModel KmnoGenerator.generateKmno(int m, int n, int o)
          generates a Km,n,o Graph with given parameters
static GraphModel PathGenerator.generatePath(int n)
          generates a Path Graph with given parameters
static GraphModel PmnGenerator.generatePmn(int m, int n)
          generates a Pm*Pn Graph with given parameters
static GraphModel RandomGenerator.generateRandomGraph(int numOfVertices, int numOfEdges)
          generates a Random Graph with given parameters
static GraphModel RandomTreeGenerator.generateRandomTree(int n, int h, int d)
          generates a random tree with given parameters
static GraphModel StarGenerator.generateStar(int n)
          generates a Star Graph with given parameters
static GraphModel TreeGenerator.generateTree(int depth, int degree)
          generates a Complete Tree with given parameters
static GraphModel WheelGenerator.generateWheel(int n)
          generates a Wheel Graph with given parameters
 

Methods in graphlab.plugins.graphgenerator.generators with parameters of type GraphModel
 void WheelGenerator.setWorkingGraph(GraphModel g)
           
 void KmnoGenerator.setWorkingGraph(GraphModel g)
           
 void HelmGraph.setWorkingGraph(GraphModel g)
           
 void KmnGenerator.setWorkingGraph(GraphModel g)
           
 void RandomTreeGenerator.setWorkingGraph(GraphModel g)
           
 void RandomGenerator.setWorkingGraph(GraphModel g)
           
 void TreeGenerator.setWorkingGraph(GraphModel g)
           
 void CmnGenerator.setWorkingGraph(GraphModel g)
           
 void PathGenerator.setWorkingGraph(GraphModel g)
           
 void PmnGenerator.setWorkingGraph(GraphModel g)
           
 void CompleteGraphGenerator.setWorkingGraph(GraphModel g)
           
 void StarGenerator.setWorkingGraph(GraphModel g)
           
 void KenserGraphGenerator.setWorkingGraph(GraphModel g)
           
 void GeneralizedPetersonGenerator.setWorkingGraph(GraphModel g)
           
 

Uses of GraphModel in graphlab.plugins.main
 

Methods in graphlab.plugins.main that return GraphModel
 GraphModel GraphData.getGraph()
           
 

Uses of GraphModel in graphlab.plugins.main.ccp
 

Methods in graphlab.plugins.main.ccp with parameters of type GraphModel
static void Copy.copyGraph(SubGraph sd, GraphModel g)
          copies the sd to g
static void Cut.cut(SubGraph sd, GraphModel gg, BlackBoard bb)
           
static void Cut.moveToGraph(GraphModel g, java.util.Collection<EdgeModel> edges, java.util.Collection<VertexModel> vertices, GraphModel previousGraph)
           
 

Uses of GraphModel in graphlab.plugins.main.core
 

Methods in graphlab.plugins.main.core that return GraphModel
static GraphModel CorePluginMethods.getGraph(BlackBoard blackboard)
           
 

Methods in graphlab.plugins.main.core with parameters of type GraphModel
 void CorePluginMethods.addEdge(GraphModel g, EdgeModel e)
          adds e to g
 void CorePluginMethods.addEdge(GraphModel g, VertexModel v1, VertexModel v2)
          create and adds a new edge from v1, v2 to g
 VertexModel CorePluginMethods.addVertex(GraphModel g)
          adds a new vertex to a random point of the graph and returns it
 VertexModel CorePluginMethods.addVertex(GraphModel g, int x, int y)
          adds a vertex to the given point of graph
 void CorePluginMethods.clearGraph(GraphModel g)
          removes all edges and vertices of g
 void CorePluginMethods.deleteEdge(GraphModel g, EdgeModel e)
           
 void CorePluginMethods.deleteVertex(GraphModel g, VertexModel v)
          deletes a vertex from it's coressponding graph
 void CorePluginMethods.resetGraph(GraphModel g)
           
 void CorePluginMethods.showGraph(GraphModel g)
           
 

Uses of GraphModel in graphlab.plugins.main.core.actions
 

Methods in graphlab.plugins.main.core.actions with parameters of type GraphModel
static void AddTab.displayGraph(GraphModel g, BlackBoard blackBoard)
          displays the givven graph in GraphLab
static void ResetGraph.resetGraph(GraphModel g)
          resets the state of current graph this means to set the properties of vertices and edges to default values, mark=false, model color=0, view color= default color * @param g
 

Uses of GraphModel in graphlab.plugins.main.core.actions.edge
 

Fields in graphlab.plugins.main.core.actions.edge declared as GraphModel
protected  GraphModel AddEdge.g
           
protected  GraphModel DragEdge.g
           
 

Methods in graphlab.plugins.main.core.actions.edge with parameters of type GraphModel
protected  void AddEdge.addUndoData(EdgeModel e, GraphModel g)
           
static EdgeModel AddEdge.doJob(GraphModel g, VertexModel v1, VertexModel v2)
           
 

Uses of GraphModel in graphlab.plugins.main.core.actions.graph
 

Methods in graphlab.plugins.main.core.actions.graph with parameters of type GraphModel
static void ClearGraph.destroyGraph(GraphModel g)
           
 

Uses of GraphModel in graphlab.plugins.main.core.actions.vertex
 

Methods in graphlab.plugins.main.core.actions.vertex with parameters of type GraphModel
static VertexModel AddVertex.addVertexToRandomPosition(GraphModel g)
          adds a vertex to a random position of the graph return the added vertex
static VertexModel AddVertex.doJob(GraphModel g, GraphPoint position)
          adds a vertex to the given location of graph
static VertexModel AddVertex.doJob(GraphModel g, int x, int y)
          adds a vertex to the given location of graph
static void DeleteVertex.doJob(GraphModel g, VertexModel v)
           
 

Uses of GraphModel in graphlab.plugins.main.saveload
 

Methods in graphlab.plugins.main.saveload that return GraphModel
static GraphModel Load.loadGraphFromFile(java.io.File selectedFile)
          loads a graph from a file, note that this method clears the graph first
 GraphModel SaveLoadPluginMethods.loadGraphML(java.io.File f)
          clears the current graph and load a graphml file saved in file to the current graph
 GraphModel SaveLoadPluginMethods.loadMatrix(java.io.File file)
          loads the matrix saved in file to the current graph
 GraphModel Load.read(java.io.File file)
           
 

Methods in graphlab.plugins.main.saveload with parameters of type GraphModel
 java.lang.String SaveLoadPluginMethods.matrix2String(GraphModel g)
           
 void SaveLoadPluginMethods.saveAsGraphML(GraphModel g, java.io.File f)
           
 void SaveLoadPluginMethods.saveAsImage(GraphModel g, java.io.File file, java.lang.String extension)
          saves g in file as a (jpeg) image
 void SaveLoadPluginMethods.saveAsMatrix(GraphModel g, java.io.File file)
           
static void Save.saveGraphML(GraphModel g, java.io.File file)
          saves g in file as a GraphML
 void Save.write(java.io.File file, GraphModel graph)
           
 

Uses of GraphModel in graphlab.plugins.main.saveload.core
 

Methods in graphlab.plugins.main.saveload.core that return GraphModel
 GraphModel GraphReaderInterface.read(java.io.File file)
          Reads the file and enters the data in the graph.
 

Methods in graphlab.plugins.main.saveload.core with parameters of type GraphModel
 void GraphWriterInterface.write(java.io.File file, GraphModel graph)
          Writes the graph to the file.
 

Uses of GraphModel in graphlab.plugins.main.saveload.image
 

Methods in graphlab.plugins.main.saveload.image that return GraphModel
 GraphModel CopyAsImage.createGraph(SubGraph sd, BlackBoard b)
          creates a new graph with the selected edges and vertices, the new graph will be built on the given blackboard
 

Methods in graphlab.plugins.main.saveload.image with parameters of type GraphModel
static java.awt.image.BufferedImage Image.Graph2Image(AbstractGraphRenderer gv, GraphModel gm)
           
static void SaveImage.saveImage(GraphModel g, java.io.File ff, java.lang.String extension)
          saves g in file as a (.extension) image
 void SaveImage.write(java.io.File file, GraphModel graph)
           
 

Uses of GraphModel in graphlab.plugins.main.saveload.matrix
 

Methods in graphlab.plugins.main.saveload.matrix that return GraphModel
static GraphModel LoadMatrix.loadMatrix(java.io.File selectedFile)
           
 GraphModel LoadMatrix.read(java.io.File file)
           
 

Methods in graphlab.plugins.main.saveload.matrix with parameters of type GraphModel
static void CopyAsMatrix.copyAsMatrix(GraphModel gg, SubGraph sd)
          sd should be a subset of g
static void Matrix.Matrix2Graph(boolean[][] mat, GraphModel g)
           
static void SaveMatrix.saveMatrix(GraphModel g, java.io.File file)
          saves g as matrix in file
 void SaveMatrix.write(java.io.File file, GraphModel graph)
           
 

Uses of GraphModel in graphlab.plugins.main.saveload.xmlparser
 

Fields in graphlab.plugins.main.saveload.xmlparser declared as GraphModel
 GraphModel GraphmlHandlerImpl.g
           
 

Methods in graphlab.plugins.main.saveload.xmlparser that return GraphModel
 GraphModel GraphmlHandlerImpl.getGraph()
           
 

Constructors in graphlab.plugins.main.saveload.xmlparser with parameters of type GraphModel
GraphmlHandlerImpl(GraphModel graph)
           
 

Uses of GraphModel in graphlab.plugins.main.select
 

Methods in graphlab.plugins.main.select with parameters of type GraphModel
static SubGraph RectangularSelect.calculateSelected(GraphModel g, java.awt.Rectangle bounds)
           
protected  void MakeSelectionCompleteGraph.doEdgeOperation(GraphModel g, java.util.HashSet<VertexModel> v)
           
protected  void MakeSelectionComplementGraph.doEdgeOperation(GraphModel g, java.util.HashSet<VertexModel> v)
           
static boolean RectangularSelect.isVertexInRect(VertexModel v, GraphModel g, java.awt.Rectangle viewBounds)
           
 

Uses of GraphModel in graphlab.plugins.reports
 

Methods in graphlab.plugins.reports with parameters of type GraphModel
static int Reports.getMaxIndependentSetSize(GraphModel graph, boolean putFirstVertexInSet)
           
static int Reports.getNumOfConnectedComponents(GraphModel graph)
           
static int Reports.getNumOfQuadrangles(GraphModel graph)
           
static int Reports.getNumOfTriangles(GraphModel graph)
           
static int Reports.girthSize(GraphModel graph)
           
static boolean Reports.isEulerian(GraphModel graph)
           
 

Uses of GraphModel in graphlab.plugins.reports.basicreports
 

Methods in graphlab.plugins.reports.basicreports with parameters of type GraphModel
static int GirthSize.getgirthSize(GraphModel graph)
           
static int NumOfConnectedComponents.getNumOfConnectedComponents(GraphModel graph)
           
static int NumOfQuadrangle.getNumOfQuadrangles(GraphModel graph)
           
static int NumOfTriangles.getNumOfTriangles(GraphModel graph)
           
static boolean IsEulerian.isEulerian(GraphModel graph)
           
 

Uses of GraphModel in graphlab.plugins.visualization.circular
 

Methods in graphlab.plugins.visualization.circular with parameters of type GraphModel
 void CircularDispatchVisualization.setWorkingGraph(GraphModel g)
           
 

Uses of GraphModel in graphlab.plugins.visualization.corebasics
 

Methods in graphlab.plugins.visualization.corebasics with parameters of type GraphModel
 void VisualizationInterface.setWorkingGraph(GraphModel g)
           
 

Uses of GraphModel in graphlab.plugins.visualization.corebasics.animator
 

Constructors in graphlab.plugins.visualization.corebasics.animator with parameters of type GraphModel
GeneralAnimator(java.util.HashMap<VertexModel,java.awt.geom.Point2D> vertexDestinations, GraphModel g, BlackBoard blackboard)
           
GeneralAnimator(java.util.HashMap<VertexModel,java.awt.geom.Point2D> vertexDestinations, java.util.HashMap<EdgeModel,java.util.Vector<java.awt.geom.Point2D>> edgeBendPoints, GraphModel g, BlackBoard blackboard)
           
 

Uses of GraphModel in graphlab.plugins.visualization.hierarchical
 

Fields in graphlab.plugins.visualization.hierarchical declared as GraphModel
 GraphModel BendedTrees.graph
           
 

Uses of GraphModel in graphlab.plugins.visualization.treevisualizations
 

Methods in graphlab.plugins.visualization.treevisualizations with parameters of type GraphModel
 void CircularTreeVisualization.setWorkingGraph(GraphModel g)
           
 void BackwardTrees.setWorkingGraph(GraphModel g)
           
 void HierarchicalTreeVisualization.setWorkingGraph(GraphModel g)
           
 void SparseTreeVisualization.setWorkingGraph(GraphModel g)
           
 

Uses of GraphModel in graphlab.samples.extensions
 

Methods in graphlab.samples.extensions that return GraphModel
 GraphModel BinaryTreeGenerator.generateGraph()
           
 


GraphLab Project