// 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/QuaternionStruct.h" namespace { constexpr size_t kWOff = 0; constexpr size_t kXOff = kWOff + 8; constexpr size_t kYOff = kXOff + 8; constexpr size_t kZOff = kYOff + 8; } // namespace using StructType = wpi::Struct; frc::Quaternion StructType::Unpack(std::span data) { return frc::Quaternion{ wpi::UnpackStruct(data), wpi::UnpackStruct(data), wpi::UnpackStruct(data), wpi::UnpackStruct(data), }; } void StructType::Pack(std::span data, const frc::Quaternion& value) { wpi::PackStruct(data, value.W()); wpi::PackStruct(data, value.X()); wpi::PackStruct(data, value.Y()); wpi::PackStruct(data, value.Z()); }