This website works better with JavaScript.
Home
Help
Sign In
VCVRack
/
Fundamental
mirror of
https://github.com/VCVRack/Fundamental.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
28
Wiki
Activity
Browse Source
Fix mirroring of X coordinate of lissajous view of Scope.
tags/v2.0.1
Andrew Belt
3 years ago
parent
814c832d5e
commit
4f6fda4903
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/Scope.cpp
+ 1
- 1
src/Scope.cpp
View File
@@ -298,7 +298,7 @@ struct ScopeDisplay : LedDisplay {
continue;
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 = b.interpolate(p);
if (i == 0)
Write
Preview
Loading…
Cancel
Save