*/
@Override
public void render( Graphics g, Player currentPlayer, PlayerList players,
IBoard board, int panelWidth, int panelHeight ) {
SetBoard b = (SetBoard) board;
int numCards = b.getNumCardsShowing();
g.clearRect( 0, 0, panelWidth, panelHeight );
g.setColor( getBackground() );
g.fillRect( 0, 0, panelWidth, panelHeight );
int numCols = getNumColumns(panelWidth, panelHeight, numCards);
Dimension cardDim = calcCardDimension(numCols, panelWidth);
int cardWidth = (int) cardDim.getWidth();
int cardHeight = (int) cardDim.getHeight();
for (int i = 0; i < numCards; i++ ) {
int row = i / numCols;
int col = i % numCols;
int colPos = col * cardWidth + CardRenderer.LEFT_MARGIN;
int rowPos = row * cardHeight + CardRenderer.TOP_MARGIN;
CardRenderer.render((Graphics2D) g, b.getDeck().get(i),
new Point2D.Float(colPos, rowPos), cardWidth, cardHeight, false);
}
}