Interface ILayoutAlgorithm<TVertex, TEdge, TGraph, TVertexInfo, TEdgeInfo>
Represents a layout algorithm.
Inherited Members
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 ILayoutAlgorithm<TVertex, TEdge, out TGraph, TVertexInfo, TEdgeInfo> : 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. |
TVertexInfo | Vertex information type. |
TEdgeInfo | Edge information type. |
Properties
| Improve this Doc View SourceEdgesInfos
Extra edges information, calculated by the layout.
Declaration
IDictionary<TEdge, TEdgeInfo> EdgesInfos { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IDictionary<TEdge, TEdgeInfo> |
VerticesInfos
Extra vertices information, calculated by the layout.
Declaration
IDictionary<TVertex, TVertexInfo> VerticesInfos { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IDictionary<TVertex, TVertexInfo> |
Events
| Improve this Doc View SourceInfoIterationEnded
Fired when a layout iteration has been done (with more detailed information).
Declaration
event LayoutIterationEndedEventHandler<TVertex, TEdge, TVertexInfo, TEdgeInfo> InfoIterationEnded
Event Type
Type | Description |
---|---|
LayoutIterationEndedEventHandler<TVertex, TEdge, TVertexInfo, TEdgeInfo> |