blob: c7882d3de1e9e58a7fadf522ffc3f58ff780d575 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef COMP_H
#define COMP_H
#include "match.h"
extern double horizontal_stdev, vertical_stdev;
struct ccoords pol_to_cart(struct pcoords c);
void comp_visit(struct leg *l);
#endif
|