Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
import xbot.common.properties.TableProxy;
import xbot.common.properties.XPropertyManager;
import xbot.common.subsystems.vision.AprilTagVisionIOFactory;
import xbot.common.subsystems.vision.AprilTagVisionIOPhotonVision;
import xbot.common.subsystems.vision.AprilTagVisionIOPhotonVisionEstimator;

/**
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* IO implementation for a simulated PhotonVision environment.
* Based on the AdvantageKit sample implementation by team 6328.
*/
public class AprilTagVisionIOPhotonVisionSimulated extends AprilTagVisionIOPhotonVision {
public class AprilTagVisionIOPhotonVisionSimulated extends AprilTagVisionIOPhotonVisionEstimator {

@AssistedFactory
public abstract static class FactoryImpl implements AprilTagVisionIOFactory {
Expand All @@ -55,7 +55,7 @@ public abstract static class FactoryImpl implements AprilTagVisionIOFactory {
@AssistedInject
public AprilTagVisionIOPhotonVisionSimulated(@Assisted String name, @Assisted Transform3d robotToCamera,
AprilTagFieldLayout fieldLayout, Lazy<SimulatedPositionSupplier> poseSupplier, PropertyFactory pf) {
super(name, robotToCamera, fieldLayout);
super(name, robotToCamera, fieldLayout, pf);

this.poseSupplier = poseSupplier;

Expand Down