001/************************* PROJECT RON *************************/ 002/* Copyright (c) 2026 StuyPulse Robotics. All rights reserved. */ 003/* Use of this source code is governed by an MIT-style license */ 004/* that can be found in the repository LICENSE file. */ 005/***************************************************************/ 006package com.stuypulse.robot.util.vision; 007 008import edu.wpi.first.math.geometry.Pose3d; 009 010public record AprilTag(int id, Pose3d location) { 011}