diff options
| author | Jacob Palecki <[email protected]> | 2020-08-13 20:56:41 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2020-08-13 20:56:41 -0700 |
| commit | 32323636b4b5390c114fc2a6d845b7621a983cdc (patch) | |
| tree | 01d7df8f55e5a1cce90617fd876eaf994eb26846 /grapher/Models/Charts/AccelCharts.cs | |
| parent | All works smoothly (diff) | |
| download | rawaccel-32323636b4b5390c114fc2a6d845b7621a983cdc.tar.xz rawaccel-32323636b4b5390c114fc2a6d845b7621a983cdc.zip | |
Fix initial points, add poll time constant
Diffstat (limited to 'grapher/Models/Charts/AccelCharts.cs')
| -rw-r--r-- | grapher/Models/Charts/AccelCharts.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/grapher/Models/Charts/AccelCharts.cs b/grapher/Models/Charts/AccelCharts.cs index 42377c4..1aa3909 100644 --- a/grapher/Models/Charts/AccelCharts.cs +++ b/grapher/Models/Charts/AccelCharts.cs @@ -84,15 +84,15 @@ namespace grapher private int FormBorderHeight { get; } - public void MakeDots(int x, int y) + public void MakeDots(int x, int y, double timeInMs) { if (Combined) { - AccelData.CalculateDots(x, y); + AccelData.CalculateDots(x, y, timeInMs); } else { - AccelData.CalculateDotsXY(x, y); + AccelData.CalculateDotsXY(x, y, timeInMs); } } |