Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
9 Endorsements
Ranked #207
Ranked #16.0K
Ranked #3K
~5K People Reached
About Me

Sr. Systems Architect, U1 Gaming

PC Specs
P4 3.0 HT 1 gig PC 3700 36 gig 10k rpm WD System Drive 250 gig 7.2k rpm WD Storage Drive More parts…
Favorite Tags
c++ x 6
c x 3
java x 1

10 Posted Topics

Member Avatar for dalaharp

If you rotate a square image about it's center, clipping will occur on all sides. The most clipping will occur when the image is rotated by a multiple of 45 degress. At a multiple of 45 degrees, any part of the image extending past the original boundries will clip, which …

Member Avatar for arielbernal
0
3K
Member Avatar for aminura

In general, I'd say pointers are like links on the internet. They refer you to something, and that's all they do. Pointers don't allocate memory, they just point to memory. Pointers aren't a structure, they refer (point) to a structure. The problem is that most people's first interaction with pointers …

Member Avatar for Dave Sinkula
0
105
Member Avatar for Reagan

Doesn't returning false signify failure? I dunno, I'm not an MFC guy. If that's not the problem, then time is crashing on init.

Member Avatar for Reagan
0
534
Member Avatar for alanna

Well, you've already broken your hand up into suits and ranks, that's a good start. Now you just need to retain that info after you do print your output. For a flush, by far the easiest solution is to take a histogram of the suits. If the entry for any …

Member Avatar for alanna
0
196
Member Avatar for Dani

well, I bet they'll split at least 2x in the next 3 years. Then you'll have 400 shares, lol.

Member Avatar for Cain
0
190
Member Avatar for drdregambit

The problem: C++ doesn't allow you to call non-const methods on const objects. Deep in the MSVS.NET 2k3 source, I found the declartion of bind2nd: [code] template<class _Fn2, class _Ty> inline binder2nd<_Fn2> bind2nd(const _Fn2& _Func, const _Ty& _Right) { // return a binder2nd functor adapter typename _Fn2::second_argument_type _Val(_Right); return (std::binder2nd<_Fn2>(_Func, …

Member Avatar for glSuccinct
0
165
Member Avatar for RITZY_G

Were I to post a homework assignment in the hopes of someone doing it for me, that's how I'd post it. I dunno, but I feel that more people would respond to a "challenge" than "do my homework for me." Well, until said people read about 3 lines, and realize …

Member Avatar for alc6379
0
127
Member Avatar for ihvc4

Off the top of me head: [code] #include <iostream> #include <conio.h> using std::cout; using std::endl; struct TData { float fWeight; float fLength; }; typedef float (TData::*TDataFloatPointer); // pointer to member float CalcAverage(const TData* pArray, int iSize, TDataFloatPointer p) { float fAverage = 0; for(int i = 0; i < iSize; …

Member Avatar for glSuccinct
0
308
Member Avatar for tanner0035

You're -not- using winsock? Odd. Well, one of the modules you're including is. Option 1, nuke that module. Option 2 (a hack), link against WS2_32.Lib.

Member Avatar for glSuccinct
0
120

The End.