circles intersection and tourel beacon
[aversive.git] / modules / base / math / geometry / vect_base.h
1 /*
2  *  Copyright Droids Corporation (2009)
3  *
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; either version 2 of the License, or
7  *  (at your option) any later version.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License
15  *  along with this program; if not, write to the Free Software
16  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  *
18  *  Revision : $Id: f16.h,v 1.6.4.3 2008-05-10 15:06:26 zer0 Exp $
19  *
20  */
21
22 #ifndef _VECT_BASE_H_
23 #define _VECT_BASE_H_
24
25 typedef struct _vect_t {
26   float x;
27   float y;
28 } vect_t;
29
30 typedef struct _point_t {
31   float x;
32   float y;
33 } point_t;
34
35 /* Return scalar product */
36 float 
37 vect_pscal(vect_t *v, vect_t *w);
38
39 /* Return Z of vectorial product */
40 float 
41 vect_pvect(vect_t *v, vect_t *w);
42
43 /* Return scalar product */
44 int8_t 
45 vect_pscal_sign(vect_t *v, vect_t *w);
46
47 /* Return Z of vectorial product */
48 int8_t 
49 vect_pvect_sign(vect_t *v, vect_t *w);
50
51 /* norm of a vector */
52 float norm(float x1, float y1, float x2, float y2);
53 float pt_norm(point_t *p1, point_t *p2);
54 float vect_norm(vect_t *v);
55 void vect_rot_trigo(vect_t *v);
56 void vect_rot_retro(vect_t *v);
57 float vect_get_angle(vect_t *v, vect_t *w);
58
59 void vect_resize(vect_t *v, float l);
60
61 #endif /* _VECT_BASE_H_ */