Skip to content

Commit

Permalink
yFrom
Browse files Browse the repository at this point in the history
  • Loading branch information
rusefillc committed Oct 25, 2024
1 parent 1bcc179 commit 0427ae0
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions random/src/main/java/com/rusefi/PinLine.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

public class PinLine {

private static final String PREFIX = "X2-";
private static final String PREFIX = "X1-";

private static final int INDEX_FROM = 53;
private static final int INDEX_TO = 72;
private static final int INDEX_FROM = 17;
private static final int INDEX_TO = 32;

private static final int Y_FROM = 335;
private static final int Y_FROM = 215;

private static final int X_FROM = 158;
private static final int X_TO = 856;
private static final int X_FROM = 216;
private static final int X_TO = 772;

public static void main(String[] args) {

Expand All @@ -21,6 +21,8 @@ public static void main(String[] args) {
System.out.println("# auto-generated by PinLine.java");
System.out.println("# " + INDEX_FROM + " " + INDEX_TO);
System.out.println("# " + X_FROM + " " + X_TO);
System.out.println("# " + Y_FROM);


for (int i = INDEX_FROM; i <= INDEX_TO; i++) {

Expand Down

0 comments on commit 0427ae0

Please sign in to comment.