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.
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;
}
}
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?

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?
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.
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
178
Announcements / Re: Summary
« on: March 26, 2010, 12:29:55 am »
so what does this mean in terms of R4 release date?
< 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.
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!
EDIT: also GOOD JOB!