View Single Post
Old 19th March 2004, 02:59 AM   #2
Andy
Administrator
Professional user
 
Andy's Avatar
 
Join Date: Jun 2003
Posts: 4,565
Default Re: Adding lots of surfaces quickly - Importer plugin

Code:
list_add_item_head(&surfaces,s);
is very quick.

Code:
Prototype void object_add_surfaces(ACObject *ob, List *l);
adds each surface to the start of the surface list with list_add_item_head. (it sets the surface's owner for each too)

It looks like you have optimal code here. Perhaps there is something else causing a slowdown?

Andy
Andy is offline   Reply With Quote