You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* Copyright 2013 Bliksem Labs. See the LICENSE file at the top-level directory of this distribution and at https://github.com/bliksemlabs/rrrr/. */
/* geometry.h */
#ifndef _GEOMETRY_H
#define _GEOMETRY_H
#include <stdint.h>
typedef struct latlon latlon_t;
struct latlon {
float lat;
float lon;
};
typedef struct coord coord_t;
struct coord {
int32_t x;
int32_t y;
};
void coord_from_latlon (coord_t*, latlon_t*);
void coord_from_lat_lon (coord_t*, double lat, double lon);