Skip to content

Instantly share code, notes, and snippets.

View GRsni's full-sized avatar

Santiago Mas GRsni

View GitHub Profile
@GRsni
GRsni / City.pde
Created December 13, 2018 18:38
Greedy TSP
class City {
PVector pos;
int index;
float dist;
boolean used=false;
City(PVector p, int I) {
pos=p;
index=I;
}
@GRsni
GRsni / City.pde
Created December 13, 2018 18:36
Greedy TSP
class City {
PVector pos;
int index;
float dist;
boolean used=false;
City(PVector p, int I) {
pos=p;
index=I;
}