Show / Hide Table of Contents

Interface IParameterizedLayoutAlgorithm<TVertex, TEdge, TGraph, TParameters>

Represents a parametrized layout algorithm.

Inherited Members
IParameterizedLayoutAlgorithm<TVertex, TEdge, TGraph>.GetParameters()
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, out TParameters> : IParameterizedLayoutAlgorithm<TVertex, TEdge, TGraph>, ILayoutAlgorithm<TVertex, TEdge, TGraph>, IAlgorithm<TGraph>, IComputation where TEdge : IEdge<TVertex> where TGraph : IVertexAndEdgeListGraph<TVertex, TEdge> where TParameters : ILayoutParameters
Type Parameters
Name Description
TVertex

Vertex type.

TEdge

Edge type.

TGraph

Graph type.

TParameters

Parameters type.

Properties

| Improve this Doc View Source

Parameters

Layout parameters.

Declaration
TParameters Parameters { get; }
Property Value
Type Description
TParameters

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