Prepairing for C++ integration.

This commit is contained in:
curt
1998-04-21 17:03:45 +00:00
parent 9d504a9e19
commit e5efd5bf69
14 changed files with 152 additions and 16 deletions

View File

@@ -7,6 +7,10 @@
#ifndef MAT3_HAS_BEEN_INCLUDED
#define MAT3_HAS_BEEN_INCLUDED
#ifdef __cplusplus
extern "C" {
#endif
/* ----------------------------- Constants ------------------------------ */
/*
@@ -143,5 +147,9 @@ int MAT3mult_hvec (MAT3hvec result_vec, MAT3hvec vec, MAT3mat mat, int normaliz
void MAT3cross_product(MAT3vec result,MAT3vec,MAT3vec);
void MAT3perp_vec(MAT3vec result_vec, MAT3vec vec, int is_unit);
#ifdef __cplusplus
}
#endif
#endif /* MAT3_HAS_BEEN_INCLUDED */