Example #1
0
        private PointF Convert(Model.Structures.Point point)
        {
            float x = (float)point.X;
            float y = (float)point.Y;

            return(new PointF(x, y));
        }
 public void SetCenterInfo(Model.Structures.Point point)
 {
     centerLabel.Text = point.ToString();
 }