private void PaintTheseGuys(Graphics g) { IncreaseCurrentAngle(10); RollingBarPainter.RenderTheseGuys( g, ClientRectangle, GMBackColor, currentAngle, Radius1, BaseColor); }
private void PaintChromeOneQuarter(Graphics g) { IncreaseCurrentAngle(10); RollingBarPainter.RenderChromeOneQuarter( g, ClientRectangle, GMBackColor, currentAngle, Radius1, BaseColor); }
private void PaintDiamondRing(Graphics g) { IncreaseCurrentAngle(12); RollingBarPainter.RenderDiamondRing( g, ClientRectangle, GMBackColor, currentAngle, Radius1, BaseColor, _xtheme == null ? Color.White : _xtheme.DiamondColor); }
private void PaintDefault(Graphics g) { IncreaseCurrentAngle(SpokeNum); RollingBarPainter.RenderDefault( g, ClientRectangle, GMBackColor, currentAngle, Radius1, Radius2, SpokeNum, PenWidth, ColorHelper.GetLighterArrayColors(BaseColor, SpokeNum)); }