Subversion Repositories shark

Rev

Blame | Last modification | View Log | RSS feed

// definizione della struttura contenente la posizione delle palle

struct posizione {
       float x;
       float y;
       float v;
       float theta;
       int col;
} ;