fix:added back non-identity advection

This commit is contained in:
robin 2024-05-05 16:44:16 +02:00
parent c8fac120dc
commit a36991dbca
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,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 + 0., lon + 0.};
return {lat + 0.01, lon + 0.01};
}
void LGlyphLayer::updateData(int t) {