Skip to content

Commit

Permalink
fixed == operator
Browse files Browse the repository at this point in the history
  • Loading branch information
r4stered committed Nov 26, 2023
1 parent 63c4caa commit 93dd14d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class VisionTargetSim {
other.GetPose().Translation().Z()) < 1_in &&
units::math::abs(pose.Rotation().Degrees() -
other.GetPose().Degrees()) < 1_deg &&
pose.model.GetIsPlanar() == other.model.GetIsPlanar();
pose.model.GetIsPlanar() == other.GetModel().GetIsPlanar();
}

private:
Expand Down

0 comments on commit 93dd14d

Please sign in to comment.