feat: load accuracy graphs using generic 2d graph loader

This commit is contained in:
Jan
2024-05-20 13:27:34 +02:00
parent 6f6a70c212
commit e68a7303b6
11 changed files with 258 additions and 30 deletions

View File

@ -1,17 +0,0 @@
#pragma once
#include <string>
#include <vector>
class GenericAccuracyGraphKnot
{
public:
float x;
float y;
};
class GenericAccuracyGraph
{
public:
std::string name;
std::vector<GenericAccuracyGraphKnot> knots;
};