covid-sim
Loading...
Searching...
No Matches
Dist.h
1#ifndef COVIDSIM_DIST_H_INCLUDED_
2#define COVIDSIM_DIST_H_INCLUDED_
3
4#include "Model.h"
5extern double sinx[361], cosx[361], asin2sqx[1001];
6double dist2UTM(double, double, double, double);
7double dist2(Person*, Person*);
8double dist2_cc(Cell*, Cell*);
9double dist2_cc_min(Cell*, Cell*);
10double dist2_mm(Microcell*, Microcell*);
11double dist2_raw(double, double, double, double);
12
13#endif // COVIDSIM_DIST_H_INCLUDED_
Holds microcells.
Definition Model.h:293
The basic unit of the simulation and is associated to a geographical location.
Definition Model.h:266
Definition Model.h:16