Google.Maps.Feature.Shape.Area.EdgeSequence

Represents a contiguous sequence of edges. Each vertex appears only once, unless this represents a closed loop (in which case the first and last verticies are identical). A sequence of n vertices represents n - 1 contiguous edges: [v0, v1], [v1, v2], ..., [v(n - 2), v(n - 1)].

Summary

Constructors and Destructors

EdgeSequence(List< Vector2 > vertices)
Constructor.

Public attributes

Vertices
readonly List< Vector2 >
The vertices of the edge sequence.

Public attributes

Vertices

readonly List< Vector2 > Vertices

The vertices of the edge sequence.

Public functions

EdgeSequence

 EdgeSequence(
  List< Vector2 > vertices
)

Constructor.

Details
Parameters
vertices
The vertices of the contiguous edge sequence.