Table of Contents

Enum CircularNodeDiameterFormula

Namespace
Northwoods.Go.Layouts
Assembly
Northwoods.GoDiagram.WinForms.CircularLayout.dll

This enumeration specifies a method for finding the size of a node. Used for NodeDiameterFormula.

public enum CircularNodeDiameterFormula

Fields

Circular = 1

The effective diameter is either the width or height of the node, whichever is larger. This will cause circular nodes to touch when Spacing is 0. This is ideal when the nodes are circular.

Pythagorean = 0

The effective diameter is sqrt(width^2+height^2). The corners of square nodes will touch at 45 degrees when Spacing is 0.