aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/map/libmap/rectangular.c
blob: d4a86c98a398bda226fe3a800e654c4e098d44f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <u.h>
#include <libc.h>
#include "map.h"

static double scale;

static int
Xrectangular(struct place *place, double *x, double *y)
{
	*x = -scale*place->wlon.l;
	*y = place->nlat.l;
	return(1);
}

proj
rectangular(double par)
{
	scale = cos(par*RAD);
	if(scale<.1)
		return 0;
	return(Xrectangular);
}