blob: 5cc4b5a6262a455e0c34b54ecab185db3143143d (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef B3_VECTOR_FLOAT4_H
#define B3_VECTOR_FLOAT4_H
#include "Bullet3Common/b3Transform.h"
//#define cross3(a,b) (a.cross(b))
#define float4 b3Vector3
//#define make_float4(x,y,z,w) b3Vector4(x,y,z,w)
#endif //B3_VECTOR_FLOAT4_H
|