PDA

View Full Version : ac3d loader offered on website - bug?


Anonymous
18th June 2005, 05:14 PM
hi there.. i noticed for the following function......

void init_surface(ACSurface *s)
{
s->vertref = NULL;
s->uvs = NULL;
s->num_vertref = 0;
s->flags = 0;
s->mat = 0;
s->normal.x = 0.0; s->normal.z = 0.0; s->normal.z = 0.0;
}

the last line, s->normal.z is assigned twice.. is the second statement supposed to be s->normal.y = 0.0 ??

thanks,
paulm.

Andy
19th June 2005, 02:37 PM
Well spotted!

Andy