/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 libssts/vec.h

  • Committer: Gustav Hartvigsson
  • Date: 2015-10-19 11:36:53 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20151019113653-612xg1n4bijpaosy
* Re-Added the inlines...
* Made the thing compile

Show diffs side-by-side

added added

removed removed

Lines of Context:
140
140
 
141
141
 
142
142
/* Aliases */
 
143
inline
143
144
Vec3_f *
144
145
vec3_add_vec3_f(Vec3 * x, Vec3_f * y){return vec3_f_add_vec3(y, x);}
145
146
 
 
147
inline
146
148
Vec3 *
147
149
vec3_16_add_vec3(Vec3_16 * x, Vec3 * y) {return vec3_add_vec3_16(y, x);}
148
150
 
 
151
inline
149
152
Vec3_f *
150
153
vec3_16_add_vec3_f(Vec3_16 * x, Vec3_f * y) {return vec3_f_add_vec3_16(y, x);}
151
154