Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - freezway

Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 »
166
Tips, Tutorials, Examples / Which should I use?
« on: March 30, 2010, 07:46:15 pm »
Ok, I'm learning C++ and it has occured there are about 3 ways to do the same thing. Here are the 3 functions i wrote up. Is there any difference in their function? are any faster? slower? more standards compliant? are magical?
Code: [Select]
void printArray(int Array, int width, int height)
{
    int i,j;
    for(i=0; i < width; i++)
    {
        for(j=0; j < height; j++)
        {
            cout << Array[i][j];
        }
        cout << endl;
    }
}

void printArray(int& Array, int width, int height)
{
    int i,j;
    for(i=0; i < width; i++)
    {
        for(j=0; j < height; j++)
        {
            cout << Array[i][j];
        }
        cout << endl;
    }
}

void printArray(int * Array, int width, int height)
{
    int i,j;
    for(i=0; i < width; i++)
    {
        for(j=0; j < height; j++)
        {
            cout << *(Array + (i*width) + j)
        }
        cout << endl;
    }
}


167
Proposals / Re: Tierable Systems
« on: March 30, 2010, 07:45:05 pm »
PWND!

168
Proposals / Re: Tierable Systems
« on: March 30, 2010, 07:35:27 pm »
... JUST USE THE CURRENT FRIGGING THING B/C IT GET DONE SOONER!

169
Proposals / Re: Tierable Systems
« on: March 30, 2010, 06:20:01 pm »
can someone explain this in english? ???

170
Announcements / Re: Update
« on: March 29, 2010, 11:21:51 pm »
you should post the todo list!

171
Announcements / Re: Summary
« on: March 26, 2010, 10:57:28 pm »
sweet. cant wait!

172
Announcements / Re: Summary
« on: March 26, 2010, 10:00:10 pm »
+1 for that comment!

anyway, what all is left for R4? also, are there gunna be any native binaries of this example?

173
Announcements / Re: Summary
« on: March 26, 2010, 09:07:08 pm »
i was talking about the argument of the correct way to refer to (GNU/Linux)/linux

174
Announcements / Re: Summary
« on: March 26, 2010, 08:48:57 pm »
seriously guys? are we really gunna argue over this?

EDIT: dammit, anyone know a good image host. Photobucket is bloated and imageshack is slow.

175
Announcements / Re: Summary
« on: March 26, 2010, 08:21:40 pm »
woooo it works.... i get like 20 fps on floor, 15 on 4096 and 30-33 on 2048

176
Announcements / Re: Summary
« on: March 26, 2010, 03:44:33 pm »
i get the wine equiviland of that if i run it for a while

177
Off-Topic / Re: ACTA
« on: March 26, 2010, 01:02:11 am »
To the irc's! (nana nana nana nana nana nana nana nana LINUX!)

178
Announcements / Re: Summary
« on: March 26, 2010, 12:29:55 am »
so what does this mean in terms of R4 release date?  :clap: < for all ur hard work.

179
Announcements / Re: Summary
« on: March 25, 2010, 10:59:26 pm »
OOOH it does work... i get ~33fps at ~2k particles
EDIT: does this mean R4 is coming soon, also i need to think out my post more before i post 'em.

180
Announcements / Re: Summary
« on: March 25, 2010, 10:55:14 pm »
GNU/linux executables?
EDIT: also GOOD JOB!

Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 »