aboutsummaryrefslogtreecommitdiff
path: root/AudioTester/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'AudioTester/Program.cs')
-rw-r--r--AudioTester/Program.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/AudioTester/Program.cs b/AudioTester/Program.cs
index 7557142..14212af 100644
--- a/AudioTester/Program.cs
+++ b/AudioTester/Program.cs
@@ -28,8 +28,8 @@ namespace AudioTester
for (int i = 0; i < array.Length; i++)
{
- g.DrawLine(background, (mat * array[i].a + new Vector2(1000, 1000)).GetPoint(), (mat * array[i].b + new Vector2(1000, 1000)).GetPoint());
- g.DrawLine(foreground, (mat * array[i].a + new Vector2(1000, 1000)).GetPoint(), (mat * array[i].b + new Vector2(1000, 1000)).GetPoint());
+ g.DrawLine(background, (array[i].a * mat + new Vector2(1000, 1000)).GetPoint(), (array[i].b * mat + new Vector2(1000, 1000)).GetPoint());
+ g.DrawLine(foreground, (array[i].a * mat + new Vector2(1000, 1000)).GetPoint(), (array[i].b * mat + new Vector2(1000, 1000)).GetPoint());
}
}