diff options
| author | Jacob Palecki <[email protected]> | 2020-09-25 22:21:26 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2020-09-25 22:21:26 -0700 |
| commit | 70360dd3c19909737d29c0b2b9fb1a7ba3f12bba (patch) | |
| tree | 345c3329330271145e67733a1a9ca79ebf00448c /grapher/Models/Charts/ChartXY.cs | |
| parent | Fix 0 point for separate x y sens (diff) | |
| download | rawaccel-70360dd3c19909737d29c0b2b9fb1a7ba3f12bba.tar.xz rawaccel-70360dd3c19909737d29c0b2b9fb1a7ba3f12bba.zip | |
Last mouse move perfetly responsive at 100 FPS
Diffstat (limited to 'grapher/Models/Charts/ChartXY.cs')
| -rw-r--r-- | grapher/Models/Charts/ChartXY.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/grapher/Models/Charts/ChartXY.cs b/grapher/Models/Charts/ChartXY.cs index c30c993..3bd7601 100644 --- a/grapher/Models/Charts/ChartXY.cs +++ b/grapher/Models/Charts/ChartXY.cs @@ -154,6 +154,15 @@ namespace grapher */ } + public void Update() + { + ChartX.Update(); + if (ChartY.Visible) + { + ChartY.Update(); + } + } + public void SetPointBinds(PointData combined, PointData x, PointData y) { CombinedPointData = combined; |