1v13d/src/FxEngine/math/coord.h

23 lines
272 B
C

#ifndef FE_COORD_H
#define FE_COORD_H
typedef struct FE_position FE_position;
struct FE_position
{
int x,y,z;
};
typedef struct FE_point FE_point;
struct FE_point
{
FE_position real,translated;
};
void FE_calc(const FE_coord& coord);
void FE_set_matrice()
#endif