//// VecTypes.h///*#ifndef __VecTypes__#include "VecTypes.h"#endif*/#ifndef __VecTypes__#define __VecTypes__#ifndef __MACTYPES__#include <MacTypes.h>#endiftypedef	vector	signed int		vSInt32;typedef	vector	unsigned int	vUInt32;typedef	vector	signed short	vSInt16;typedef	vector	unsigned short	vUInt16;typedef	vector	signed char		vSInt8;typedef	vector	unsigned char	vUInt8;typedef vector	float			vFloat;#endif