Browse Source

Fix mirroring of X coordinate of lissajous view of Scope.

tags/v2.0.1
Andrew Belt 3 years ago
parent
commit
4f6fda4903
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Scope.cpp

+ 1
- 1
src/Scope.cpp View File

@@ -298,7 +298,7 @@ struct ScopeDisplay : LedDisplay {
continue; continue;


Vec p; Vec p;
p.x = (avgX + offsetX) * gainX * -0.5f + 0.5f;
p.x = (avgX + offsetX) * gainX * 0.5f + 0.5f;
p.y = (avgY + offsetY) * gainY * -0.5f + 0.5f; p.y = (avgY + offsetY) * gainY * -0.5f + 0.5f;
p = b.interpolate(p); p = b.interpolate(p);
if (i == 0) if (i == 0)


Loading…
Cancel
Save