NOTICE: Google Maps Platform gaming services is deprecated as of October 18, 2021. Current users will have continued access until December 31, 2022. During this time, we will continue to provide support and fixes to major bugs and outages. See the Gaming Services Transition Guide for resources to help you plan the next steps for your projects.

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.