/// <summary>
 /// Initializes a new instance of the Skeleton2DdataCoordEventArgs class
 /// </summary>
 /// <param name="points">The points we need to handle in this class</param>
 public Skeleton2DdataCoordEventArgs(Point[] points, int _index, Point center, float dist_normalizer)
 {
     _points = (Point[]) points.Clone();
     index = _index;
     center_point = center;
     distance_normalizer = dist_normalizer;
 }
 /// <summary>
 /// Initializes a new instance of the Skeleton2DdataCoordEventArgs class
 /// </summary>
 /// <param name="points">The points we need to handle in this class</param>
 public Skeleton2DdataCoordEventArgs(Point[] points)
 {
     _points = (Point[]) points.Clone();
 }