blob: 412d65e7dde2bc6c6b4073cd662d0419c1d06377 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#include <u.h>
#include <libc.h>
#include "map.h"
/* refractive fisheye, not logarithmic */
static double n;
static int
Xfisheye(struct place *place, double *x, double *y)
{
double r;
double u = sin(PI/4-place->nlat.l/2)/n;
if(fabs(u) > .97)
return -1;
r = tan(asin(u));
*x = -r*place->wlon.s;
*y = -r*place->wlon.c;
return 1;
}
proj
fisheye(double par)
{
n = par;
return n<.1? 0: Xfisheye;
}
|