/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:16:58 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20151019111658-nqf9p5qj1you04g5
* Fixed README.
* Started re-working SError.
* Made a few readabillity changes here and there.
* Renamed s_matrix_foreach to s_matrix_for_each.
* Fixed potential memory leak in s_matrix_for_each.
* Removed inlines... Did not do what I thought they did.

Show diffs side-by-side

added added

removed removed

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