Subversion Repositories shark

Rev

Rev 1655 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1655 giacomo 1
// definizione della struttura contenente la posizione delle palle
2
 
3
struct posizione {
4
       float x;
5
       float y;
6
       float v;
7
       float theta;
8
       int col;
9
} ;
10
 
11