refactor of VtkCallbackCommand to be its' own class

This commit is contained in:
2024-05-03 15:23:34 +02:00
parent b83f49b4ad
commit da17aa5cfa
10 changed files with 142 additions and 20 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+0.001, lon+0.001} ;
return {lat+0.1, lon+0.1} ;
}