dos3d

view src/vmath.h @ 24:698c4d07702d

fixed the linux makefile
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 20 Jun 2017 21:55:49 +0300
parents 00d84ab1ef26
children
line source
1 #ifndef VMATH_H_
2 #define VMATH_H_
4 typedef struct {
5 float x, y, z, w;
6 } vec4_t;
8 typedef struct {
9 float x, y, z;
10 } vec3_t;
12 typedef struct {
13 float x, y;
14 } vec2_t;
17 #endif /* VMATH_H_ */