Structural mapper into structures.

This commit is contained in:
Alan Mishchenko
2013-11-12 16:03:18 -08:00
parent e70adbcd2d
commit 4e00ec6169
8 changed files with 754 additions and 2 deletions
+8
View File
@@ -106,6 +106,14 @@ static inline Vec_Flt_t * Vec_FltStart( int nSize )
memset( p->pArray, 0, sizeof(float) * nSize );
return p;
}
static inline Vec_Flt_t * Vec_FltStartFull( int nSize )
{
Vec_Flt_t * p;
p = Vec_FltAlloc( nSize );
p->nSize = nSize;
memset( p->pArray, 0xFF, sizeof(float) * nSize );
return p;
}
/**Function*************************************************************