// Copyright (c) FIRST and other WPILib contributors. // Open Source Software; you can modify and/or share it under the terms of // the WPILib BSD license file in the root directory of this project. #include "frc/geometry/struct/Translation3dStruct.h" namespace { constexpr size_t kXOff = 0; constexpr size_t kYOff = kXOff + 8; constexpr size_t kZOff = kYOff + 8; } // namespace using StructType = wpi::Struct; frc::Translation3d StructType::Unpack(std::span data) { return frc::Translation3d{ units::meter_t{wpi::UnpackStruct(data)}, units::meter_t{wpi::UnpackStruct(data)}, units::meter_t{wpi::UnpackStruct(data)}, }; } void StructType::Pack(std::span data, const frc::Translation3d& value) { wpi::PackStruct(data, value.X().value()); wpi::PackStruct(data, value.Y().value()); wpi::PackStruct(data, value.Z().value()); }