Show / Hide Table of Contents

Class OverlapRemovalContext<TVertex>

Base class for all overlap removal context.

Inheritance
System.Object
OverlapRemovalContext<TVertex>
Implements
IOverlapRemovalContext<TVertex>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: GraphShape.Algorithms.OverlapRemoval
Assembly: GraphShape.dll
Syntax
public class OverlapRemovalContext<TVertex> : IOverlapRemovalContext<TVertex>
Type Parameters
Name Description
TVertex

Vertex type.

Constructors

| Improve this Doc View Source

OverlapRemovalContext(IDictionary<TVertex, Rect>)

Initializes a new instance of the OverlapRemovalContext<TVertex> class.

Declaration
public OverlapRemovalContext(IDictionary<TVertex, Rect> rectangles)
Parameters
Type Name Description
System.Collections.Generic.IDictionary<TVertex, Rect> rectangles

Overlap rectangles.

Exceptions
Type Condition
System.ArgumentNullException

rectangles is null.

Properties

| Improve this Doc View Source

Rectangles

Overlap rectangles.

Declaration
public IDictionary<TVertex, Rect> Rectangles { get; }
Property Value
Type Description
System.Collections.Generic.IDictionary<TVertex, Rect>

Implements

IOverlapRemovalContext<TVertex>

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