/simpletypesystem/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk

« back to all changes in this revision

Viewing changes to src/vec.h

  • Committer: Gustav Hartvigsson
  • Date: 2015-07-12 19:04:18 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20150712190418-yi9rfito5ovnf6dy
* Made the code more easy to read.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 * @sa vec3_new
30
30
 * @sa Vec3_16
31
31
 */
32
 
typedef struct Vec3 {
 
32
typedef struct
 
33
Vec3 {
33
34
  int a;
34
35
  int b;
35
36
  int c;
40
41
 *
41
42
 * @sa Vec3
42
43
 */
43
 
Vec3 * vec3_new (int a, int b, int c);
 
44
Vec3 *
 
45
vec3_new (int a, int b, int c);
44
46
 
45
47
/** @} */
46
48
 
54
56
 * @sa vec3_16_new
55
57
 * @sa Vec3
56
58
 */
57
 
typedef struct Vec3_16 {
 
59
typedef struct
 
60
Vec3_16 {
58
61
  int16_t a;
59
62
  int16_t b;
60
63
  int16_t c;
66
69
 * 
67
70
 * @sa Vec3_16
68
71
 */
69
 
Vec3_16 * vec3_16_new (int16_t a, int16_t b, int16_t c);
 
72
Vec3_16 *
 
73
vec3_16_new (int16_t a, int16_t b, int16_t c);
70
74
 
71
75
/** @} @} */
72
76