Exemplo n.º 1
0
        /// <summary>
        /// Accept point
        /// </summary>
        /// <param name="a_point"></param>
        /// <param name="a_graphics"></param>
        public void AssignPoint(
            ref System.Drawing.Point a_point,
            ref GraphicsHolder a_graphics
            )
        {
            this[m_i_counter] = a_point;

            if (m_i_counter == 3)
            {
                a_graphics.DrawThreePointConnection(ref m_points);

                NextThree();
            }
        }
Exemplo n.º 2
0
 public void InitGraphics()
 {
     m_graphics_holder = new GraphicsHolder(this);
 }