Update simulation results as the sim runs.

Also adds a time axis which grows by 2X at a time rather than to the
size of the current data.

Fixes https://gitlab.com/kicad/code/kicad/-/issues/11255
This commit is contained in:
Jeff Young
2023-06-18 16:52:11 +01:00
parent 9447c3d455
commit 9199d7a781
7 changed files with 89 additions and 42 deletions
+4 -4
View File
@@ -2980,10 +2980,10 @@ void mpFXYVector::SetData( const std::vector<double>& xs, const std::vector<doub
}
else
{
m_minX = -1;
m_maxX = 1;
m_minY = -1;
m_maxY = 1;
m_minX = 0;
m_maxX = 0;
m_minY = 0;
m_maxY = 0;
}
}