AGENT.Contrib.Drawing.Drawing.PaintSecondHand C# (CSharp) Method

PaintSecondHand() public method

Paint the seconds hand, with a given thickness
public PaintSecondHand ( Microsoft.SPOT.Bitmap screen, System.Color color, int thickness, int second ) : void
screen Microsoft.SPOT.Bitmap
color System.Color
thickness int
second int
return void
        public void PaintSecondHand(Bitmap screen, Color color, int thickness, int second)
        {

            PaintLine(screen, color, thickness, AGENT.Contrib.Device.Center, SecondHandLocation(second));
        }