// 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 "wpi/math/geometry/proto/Translation2dProto.hpp" #include "wpimath/protobuf/geometry2d.npb.h" std::optional wpi::util::Protobuf::Unpack( InputStream& stream) { wpi_proto_ProtobufTranslation2d msg; if (!stream.Decode(msg)) { return {}; } return wpi::math::Translation2d{ wpi::units::meter_t{msg.x}, wpi::units::meter_t{msg.y}, }; } bool wpi::util::Protobuf::Pack(OutputStream& stream, const wpi::math::Translation2d& value) { wpi_proto_ProtobufTranslation2d msg{ .x = value.X().value(), .y = value.Y().value(), }; return stream.Encode(msg); }