Exemple #1
0
 public void Draw(Graphics g, Transform projection, int width, int height)
 {
     foreach (var Verge in Verges)
     {
         Verge.Draw(g, projection, width, height);
     }
 }
        public void Draw(Graphics g, Transform projection, int width, int height)
        {
            if (Points.Count != 8)
            {
                return;
            }

            foreach (var Verge in Verges)
            {
                Verge.Draw(g, projection, width, height);
            }
        }