Exemple #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Polygon"/> class using an array of coordinates.
 /// </summary>
 /// <param name="points">An <see cref="Vector2FArrayList"/> instance.</param>
 public Polygon(Vector2FArrayList points)
 {
     _points.AddRange(points);
 }