remove gnpuplot

This commit is contained in:
2024-09-23 14:27:34 +02:00
parent f3970bf04f
commit 0ee71baa98

View File

@@ -4,7 +4,7 @@
#include <cstddef>
#include <iostream>
plot p;
// plot p;
static std::vector<float> vectorX;
static std::vector<float> vectorY;
static std::vector<float> vectorGyroTheta;
@@ -578,9 +578,9 @@ long CKobuki::loop(void *user_data, TKobukiData &Kobuki_data) {
vectorY.push_back(gy);
vectorGyroTheta.push_back(gyroTheta);
if (counter % 100 == 0) {
p.plot_data(vectorY, vectorX);
}
// if (counter % 100 == 0) {
// p.plot_data(vectorY, vectorX);
// }
counter++;
return 0;