PolygonPointCollection Class

Project Mercury API

[This is preliminary documentation and is subject to change.]

Collection of points to generate a polygon.

Namespace:  ProjectMercury.Emitters
Assembly:  ProjectMercury (in ProjectMercury.dll) Version: 3.1.0.0

Syntax

C#
public class PolygonPointCollection : List<Vector2>, 
	IList, ICollection, IEnumerable
Visual Basic (Declaration)
Public Class PolygonPointCollection _
	Inherits List(Of Vector2) _
	Implements IList, ICollection, IEnumerable
Visual C++
public ref class PolygonPointCollection : public List<Vector2>, 
	IList, ICollection, IEnumerable

Remarks

By implementing the IList interface explicitly, we can effectively override certain methods of the base class without them being declared as virtual.

Inheritance Hierarchy

System..::.Object
  System.Collections.Generic..::.List<(Of <(Vector2>)>)
    ProjectMercury.Emitters..::.PolygonPointCollection

See Also