Show / Hide Table of Contents

Interface ICompoundLayoutContext<TVertex, TEdge, TGraph>

Represents a compound graph layout context.

Inherited Members
ILayoutContext<TVertex, TEdge, TGraph>.Positions
ILayoutContext<TVertex, TEdge, TGraph>.Sizes
ILayoutContext<TVertex, TEdge, TGraph>.Graph
ILayoutContext<TVertex, TEdge, TGraph>.Mode
Namespace: GraphShape.Algorithms.Layout
Assembly: GraphShape.dll
Syntax
public interface ICompoundLayoutContext<TVertex, TEdge, out TGraph> : ILayoutContext<TVertex, TEdge, TGraph> where TEdge : IEdge<TVertex> where TGraph : IBidirectionalGraph<TVertex, TEdge>
Type Parameters
Name Description
TVertex

Vertex type.

TEdge

Edge type.

TGraph

Graph type.

Properties

| Improve this Doc View Source

LayoutTypes

Layout types per vertex.

Declaration
IDictionary<TVertex, CompoundVertexInnerLayoutType> LayoutTypes { get; }
Property Value
Type Description
System.Collections.Generic.IDictionary<TVertex, CompoundVertexInnerLayoutType>
| Improve this Doc View Source

VerticesBorders

Vertices borders.

Declaration
IDictionary<TVertex, Thickness> VerticesBorders { get; }
Property Value
Type Description
System.Collections.Generic.IDictionary<TVertex, Thickness>

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