Just a minor but significant issue with the documentation for the
rcPolyMeshDetail structure in Recast.h (r233)
Current:
// const unsigned char* t = &dmesh.tris[(tbase+i)*3]; and
Should be:
// const unsigned char* t = &dmesh.tris[(tbase+i)*4]; and
This is because the stride of the tris array is 4 (indexA, indexB, indexC,
flag), not 3.
Original issue reported on code.google.com by steve...@gmail.com on 1 Nov 2010 at 8:39
Original issue reported on code.google.com by
steve...@gmail.com
on 1 Nov 2010 at 8:39