Skip to content

Instantly share code, notes, and snippets.

View janhoogeveen's full-sized avatar
👟
hype

Jan Hoogeveen janhoogeveen

👟
hype
View GitHub Profile
void drawPath(float lat1, float lon1, float lat2, float lon2) {
stroke(0);
strokeWeight(5);
noFill();
lat1 *= PI/180;
lon1 *= PI/180;
lat2 *= PI/180;
lon2 *= PI/180;