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