Alteridem.WinTouch.Demo.GestureControl.ResetImage C# (CSharp) Method

ResetImage() private method

private ResetImage ( ) : void
return void
        private void ResetImage()
        {
            // Center the image on the form and reset its size
            _size = Math.Min( m_image.Width, m_image.Height ) / 2;
            _location = new Point( Width / 2, Height / 2 );
            _rotation = 0;
        }