all triggers should be documented way nicer #2001

TDC fix
This commit is contained in:
rusefillc 2020-12-10 21:21:25 -05:00
parent e5a090d745
commit e1d5eb1839
1 changed files with 1 additions and 1 deletions

View File

@ -235,7 +235,7 @@ public class TriggerImage {
double tdcAngle = Math.toRadians(shape.getTdcPosition());
int smallX = (int) (WHEEL_DIAMETER / 2 * Math.sin(tdcAngle));
int smallY = -(int) (WHEEL_DIAMETER / 2 * Math.cos(tdcAngle));
int smallY = (int) (WHEEL_DIAMETER / 2 * Math.cos(tdcAngle));
int tdcMarkRadius = 8;
g.fillOval(middle + smallX - tdcMarkRadius, middle + smallY - tdcMarkRadius,