Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Class: RT.Coordinates.CircularCell

Summary

Represents a cell in a circular grid. Any number of cells can make a full circle, and there can be any number of circles of varying radius.

Constructors

Constructor.

Instance methods

bool
Equals(object obj)
  • Overrides: object.Equals(object)
Refer to the documentation for object.Equals.
boolRefer to the documentation for IEquatable<CircularCell>.Equals.
IEnumerable<Link<Vertex>>
FindEdges(IEnumerable<CircularCell> cells)
Given a collection of CircularCell objects, returns a collection of edges that describes the perimeter of the current cell.
IEnumerable<CircularCell>
FindNeighbors(IEnumerable<CircularCell> cells)
Given a collection of CircularCell objects, returns the subset of those that would be neighbors of the current cell.
int
  • Overrides: object.GetHashCode()
Refer to the documentation for object.GetHashCode.
string
  • Overrides: object.ToString()
Refer to the documentation for object.ToString.

Instance properties

PointDReturns the center point of this cell.
CircleFractionWhere along the circular perimeter this cell ends.
int Specifies the inner radius of this cell. The outer radius is this plus one. (see also remarks)
CircleFractionWhere along the circular perimeter this cell begins.

Nested types

Describes a grid of circular cells. Any number of cells can make a full circle, and there can be any number of circles of varying radius.
Describes a vertex in a CircularCell grid.