Add public functions to header

This commit is contained in:
hasufell 2014-05-10 23:38:10 +02:00
parent 723da9996d
commit accf11ba6c
No known key found for this signature in database
GPG Key ID: 220CD1C5BDEED020
1 changed files with 2 additions and 0 deletions

View File

@ -44,6 +44,8 @@ struct vector {
bool vector_product(vector *a, vector *b, vector *c);
bool add_vectors(vector *a, vector *b, vector *c);
bool sub_vectors(vector *a, vector *b, vector *c);
bool normalize_vector(vector *a, vector *b);
bool copy_vector(vector *a, vector *b);