awips2/nativeLib/rary.ohd.pproc/inc/vector_3.h
root 9f19e3f712 Initial revision of AWIPS2 11.9.0-7p5
Former-commit-id: 64fa9254b946eae7e61bbc3f513b7c3696c4f54f
2012-01-06 08:55:05 -06:00

18 lines
304 B
C

/*
* vector_3.h
*
* Created on: Aug 26, 2011
* Author: snaples
*/
#ifndef VECTOR_3_H_
#define VECTOR_3_H_
typedef struct {double v[3];} vector_3d;
#ifdef __cplusplus
extern "C" {
#endif
double x_product(double * a,double * b,double * c) ;
#ifdef __cplusplus
}
#endif
#endif /* VECTOR_3_H_ */