How do I quickly erase an array?

You must understand the Game Editor concepts, before post here.

How do I quickly erase an array?

Postby BeyondtheTech » Sat Sep 03, 2005 2:34 pm

This might be simple C++ command or procedure, but how does one erase an array quicker than this?

Code: Select all
for (i1=0; i1<10; i1++)
   for (i2=0; i2<10; i2++)   
      for (i3=0; i3<10; i3++)
         array[i1][i2][i3]=0;
User avatar
BeyondtheTech
 
Posts: 270
Joined: Wed Mar 30, 2005 6:34 am
Location: Edison, NJ
Score: 4 Give a positive score

Postby makslane » Sat Sep 03, 2005 2:55 pm

The fastest way to erase is use the memset function.

If your array is this:
int array[5][3][7];

Erase with:
memset(array, 0, 5*3*7*sizeof(int));
makslane
Site Admin
 
Posts: 3947
Joined: Sat Apr 05, 2003 6:47 pm
Score: 182 Give a positive score


Return to Advanced Topics

Who is online

Users browsing this forum: No registered users and 1 guest