2020-12-26 14:12:05 -08:00
|
|
|
// 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.
|
2019-07-24 02:57:39 -04:00
|
|
|
|
|
|
|
|
#include "frc/geometry/Pose2d.h"
|
|
|
|
|
|
2019-11-02 13:35:03 -05:00
|
|
|
#include <wpi/json.h>
|
|
|
|
|
|
|
|
|
|
void frc::to_json(wpi::json& json, const Pose2d& pose) {
|
|
|
|
|
json = wpi::json{{"translation", pose.Translation()},
|
|
|
|
|
{"rotation", pose.Rotation()}};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void frc::from_json(const wpi::json& json, Pose2d& pose) {
|
|
|
|
|
pose = Pose2d{json.at("translation").get<Translation2d>(),
|
|
|
|
|
json.at("rotation").get<Rotation2d>()};
|
|
|
|
|
}
|