power-play/TeamCode/src/main/java/org/firstinspires/ftc/teamcode/kinematics/Pose.java
missing 8cdd3dd447 literally everything ive done over the past >2 months in one commit lol
most important stuff: kinematics, autons, config, dashboard, easyopencv + april tags, and probably more im forgetting

https://xkcd.com/1296/
2023-01-23 23:52:26 -06:00

20 lines
427 B
Java

package org.firstinspires.ftc.teamcode.kinematics;
public class Pose {
public final FieldVector pos;
public final double yaw;
public final int liftPos;
public final static Pose ZERO = new Pose(
FieldVector.ZERO,
0,
0
);
public Pose(FieldVector pos, double yaw, int liftPos) {
this.pos = pos;
this.yaw = yaw;
this.liftPos = liftPos;
}
}