playing-cards

Is there an easy way to display playing cards in a WinForms app?

I am writing a quickie BlackJack Winforms app to demonstrate a couple of concepts. The engine itself is fairly simple, however, I'd like to display actual playing cards on the WinForm. Is there a library out there that I can use (preferably free) that allows the display the cards. There is, of course, the cards.dll from way back in th...

probability of deck of cards

for(i=1;i<=n;i++) { pick a random index j between 1 and n inclusive; swap card[i] and card[j]; } for the above code am trying to find the probability of original card[k] winding up in slot n is 1/n? I guess it's (n-1)/n * 1/(n-1)=1/n. But can u help me proving this? ...

What is the optimal winning strategy for this modified blackjack game?

Questions Is there a best value to stay on so that I win the greatest percentage of games possible? If so, what is it? Edit: Is there an exact probability of winning that can be calculated for a given limit, independent of whatever the opponent does? (I haven't done probability & statistics since college). I'd be interested in seeing t...

Java Playing Cards Game Framework

My friends and I at uni love playing Shithead into the wee hours. But soon we graduate and will leave town, so probably won't get together for a game for a while. I want to develop a Java app we can use to play Shithead and our other favorites over a network. An app like this already exists, but is ugly, buggy and does not support our ...

Playing Card "3D" rotation in OpenGL - perspective?

Hi all, (Mac OS X, Cocoa, C/C++, OpenGL, somewhat mathematically challenged.) Project is a real-time (30fps) poker game, with a 2D view. The OpenGL view is set up for Orthographic projection using glOrtho; the camera is always looking directly down at the cards/table. To date, it's essentially been a 2D image composition engine. My pl...