Search:

Type: Posts; User: Will Hemsworth

Search: Search took 0.01 seconds.

  1. This book...

    This book I found to be very useful for game programming, the first thing it teaches you is how to use the Windows API, then it moves onto DirectX, even though it uses a very old version (DirectX 7)...
  2. Replies
    10
    Views
    1,256

    Perhaps I just wasn't doing it right :p, but I...

    Perhaps I just wasn't doing it right :p, but I was playing with the settings for quite a long time, and could never quite get it how I wanted.
    Either way, Im glad I made the switch to MSVS :D
  3. Replies
    10
    Views
    1,256

    > i use Dev C++. When I used Dev C++, I noticed...

    > i use Dev C++.
    When I used Dev C++, I noticed it had terrible indentation problems, thats when I changed to MSVS 2005, and its just takes away so many problems :cool:
  4. If your going to manually round it, CornedBee's...

    If your going to manually round it, CornedBee's suggestion will only work for positive numbers,
    but incase you need to do it with a negative value, you can use this simple function.

    #define...
  5. Replies
    10
    Views
    8,989

    Try changing it to something like this. ...

    Try changing it to something like this.


    class Quadtree
    {
    private:
    Quadtree *children;

    public:
    Quadtree() {
  6. Replies
    10
    Views
    135,134

    I guess if you just wanted to pass a "char...

    I guess if you just wanted to pass a "char array", not a pointer to one, you could do something like this,
    however both arrays need to have the same number of characters otherwise they are...
Results 1 to 6 of 6