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

PaintMinuteHand() public method

Paint the minute hand, with a given thickness
public PaintMinuteHand ( Microsoft.SPOT.Bitmap screen, System.Color color, int thickness, int minute, int second ) : void
screen Microsoft.SPOT.Bitmap
color System.Color
thickness int
minute int
second int
return void
        public void PaintMinuteHand(Bitmap screen, Color color, int thickness, int minute, int second)
        {
            PaintLine(screen, color, thickness, AGENT.Contrib.Device.Center, MinuteHandLocation(minute, second));
        }