fix: had to chagne to pointers for the virtual function to override properly

This commit is contained in:
2024-05-03 00:17:28 +02:00
parent ef1c78e0a5
commit b83f49b4ad
4 changed files with 19 additions and 22 deletions

View File

@@ -57,7 +57,7 @@ void LGlyphLayer::spoofPoints() {
// returns new coords for a point; used to test the updateData function
std::pair<double, double> advect(int time, double lat, double lon) {
return {lat+1, lon+1} ;
return {lat+0.001, lon+0.001} ;
}