Revert "Make boiler plate code - Needs to be programmed with robot"

This reverts commit 0f7861ff02.
This commit is contained in:
Astatin3
2024-02-15 15:35:53 -07:00
parent 1d04fc34de
commit 2825af3cde
11 changed files with 241 additions and 125 deletions
@@ -0,0 +1,13 @@
package frc4388.utility;
// This is a seperate class in case I want to encode rotation or other
// information about the tag
public class AprilTag {
public final double x, y, z;
public AprilTag(double _x, double _y, double _z) {
x = _x;
y = _y;
z = _z;
}
}