Adding a couple more methods to IAprilTagProvider
This commit is contained in:
parent
224d966e3e
commit
49b55e5942
@ -2,8 +2,9 @@ package frc.robot.interfaces;
|
|||||||
|
|
||||||
import java.util.OptionalDouble;
|
import java.util.OptionalDouble;
|
||||||
|
|
||||||
public interface IAprilTagProvider {
|
public interface IAprilTagProvider {
|
||||||
|
|
||||||
public OptionalDouble getTagHorizontalOffsetByID(int id);
|
public OptionalDouble getTagHorizontalOffsetByID(int id);
|
||||||
public OptionalDouble getTagDistanceFromCameraByID(int id);
|
public OptionalDouble getTagDistanceFromCameraByID(int id);
|
||||||
|
public OptionalDouble getTagPitchByID(int id);
|
||||||
|
public OptionalDouble getTagYawByID(int id);
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
package frc.robot.interfaces;
|
package frc.robot.interfaces;
|
||||||
|
|
||||||
import java.util.Optional;
|
|
||||||
|
|
||||||
import edu.wpi.first.math.geometry.Pose2d;
|
import edu.wpi.first.math.geometry.Pose2d;
|
||||||
|
|
||||||
public interface IVisualPoseProvider {
|
public interface IVisualPoseProvider {
|
||||||
|
Loading…
Reference in New Issue
Block a user