12 linhas
165 B
C
12 linhas
165 B
C
#ifndef _POINT3D_H_
|
|
#define _POINT3D_H_
|
|
|
|
typedef struct _point3d_t {
|
|
float32_t x;
|
|
float32_t y;
|
|
float32_t z;
|
|
float32_t w;
|
|
} point3d_t;
|
|
|
|
#endif // _POINT3D_H_
|