Show / Hide Table of Contents

Interface IParameterizedLayoutAlgorithm<TVertex, TEdge, TGraph>

Represents a parametrized layout algorithm.

Inherited Members
ILayoutAlgorithm<TVertex, TEdge, TGraph>.VerticesPositions
ILayoutAlgorithm<TVertex, TEdge, TGraph>.GetVertexInfo(TVertex)
ILayoutAlgorithm<TVertex, TEdge, TGraph>.GetEdgeInfo(TEdge)
ILayoutAlgorithm<TVertex, TEdge, TGraph>.ProgressChanged
ILayoutAlgorithm<TVertex, TEdge, TGraph>.IterationEnded
QuikGraph.Algorithms.IAlgorithm<TGraph>.VisitedGraph
QuikGraph.Algorithms.IComputation.Compute()
QuikGraph.Algorithms.IComputation.Abort()
QuikGraph.Algorithms.IComputation.SyncRoot
QuikGraph.Algorithms.IComputation.State
QuikGraph.Algorithms.IComputation.StateChanged
QuikGraph.Algorithms.IComputation.Started
QuikGraph.Algorithms.IComputation.Finished
QuikGraph.Algorithms.IComputation.Aborted
Namespace: GraphShape.Algorithms.Layout
Assembly: GraphShape.dll
Syntax
public interface IParameterizedLayoutAlgorithm<TVertex, in TEdge, out TGraph> : ILayoutAlgorithm<TVertex, TEdge, TGraph>, IAlgorithm<TGraph>, IComputation where TEdge : IEdge<TVertex> where TGraph : IVertexAndEdgeListGraph<TVertex, TEdge>
Type Parameters
Name Description
TVertex

Vertex type.

TEdge

Edge type.

TGraph

Graph type.

Methods

| Improve this Doc View Source

GetParameters()

Gets layout parameters.

Declaration
ILayoutParameters GetParameters()
Returns
Type Description
ILayoutParameters

Layout parameters.

Extension Methods

GraphHelpers.GetDistances<TVertex, TEdge, TGraph>(TGraph)
GraphHelpers.GetDiameter<TVertex, TEdge, TGraph>(TGraph)
GraphHelpers.GetDiameter<TVertex, TEdge, TGraph>(TGraph, out Double[,])
  • Improve this Doc
  • View Source
In This Article
Back to top GraphShape