This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Load prezto | |
antigen use prezto | |
# Load bundles from prezto | |
antigen bundle helper | |
antigen bundle git | |
antigen bundle history | |
# Load syntax highlighting bundle | |
antigen bundle zsh-users/zsh-syntax-highlighting |