auto incomplete

This commit is contained in:
Abhi Sachi
2023-02-06 19:49:08 -07:00
parent 6b4c591b3b
commit 3a9b2eca5b
3 changed files with 18 additions and 2 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;
}
}