dos3d

view src/vmath.h @ 23:f2c2e45e8edd

reverted the mistaken push from the deepstone branch
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 21 Sep 2013 18:22:11 +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_ */