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
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
2021-08-20 09:02:01 -07:00
|
|
|
|
#include <wpi/SymbolExports.h>
|
|
|
|
|
|
|
2019-07-24 02:57:39 -04:00
|
|
|
|
#include "Rotation2d.h"
|
2020-08-08 11:54:03 -07:00
|
|
|
|
#include "units/length.h"
|
2019-07-24 02:57:39 -04:00
|
|
|
|
|
2019-11-02 13:35:03 -05:00
|
|
|
|
namespace wpi {
|
|
|
|
|
|
class json;
|
|
|
|
|
|
} // namespace wpi
|
|
|
|
|
|
|
2019-07-24 02:57:39 -04:00
|
|
|
|
namespace frc {
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2022-05-06 08:41:23 -07:00
|
|
|
|
* Represents a translation in 2D space.
|
2019-07-24 02:57:39 -04:00
|
|
|
|
* This object can be used to represent a point or a vector.
|
|
|
|
|
|
*
|
|
|
|
|
|
* This assumes that you are using conventional mathematical axes.
|
2022-05-06 08:41:23 -07:00
|
|
|
|
* When the robot is at the origin facing in the positive X direction, forward
|
|
|
|
|
|
* is positive X and left is positive Y.
|
2019-07-24 02:57:39 -04:00
|
|
|
|
*/
|
2021-08-20 09:02:01 -07:00
|
|
|
|
class WPILIB_DLLEXPORT Translation2d {
|
2019-07-24 02:57:39 -04:00
|
|
|
|
public:
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Constructs a Translation2d with X and Y components equal to zero.
|
|
|
|
|
|
*/
|
|
|
|
|
|
constexpr Translation2d() = default;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Constructs a Translation2d with the X and Y components equal to the
|
|
|
|
|
|
* provided values.
|
|
|
|
|
|
*
|
|
|
|
|
|
* @param x The x component of the translation.
|
|
|
|
|
|
* @param y The y component of the translation.
|
|
|
|
|
|
*/
|
2019-08-17 01:00:33 -04:00
|
|
|
|
Translation2d(units::meter_t x, units::meter_t y);
|
2019-07-24 02:57:39 -04:00
|
|
|
|
|
2020-10-21 00:22:41 -04:00
|
|
|
|
/**
|
|
|
|
|
|
* Constructs a Translation2d with the provided distance and angle. This is
|
|
|
|
|
|
* essentially converting from polar coordinates to Cartesian coordinates.
|
|
|
|
|
|
*
|
|
|
|
|
|
* @param distance The distance from the origin to the end of the translation.
|
|
|
|
|
|
* @param angle The angle between the x-axis and the translation vector.
|
|
|
|
|
|
*/
|
|
|
|
|
|
Translation2d(units::meter_t distance, const Rotation2d& angle);
|
|
|
|
|
|
|
2019-07-24 02:57:39 -04:00
|
|
|
|
/**
|
2022-05-06 08:41:23 -07:00
|
|
|
|
* Calculates the distance between two translations in 2D space.
|
2019-07-24 02:57:39 -04:00
|
|
|
|
*
|
2022-05-06 08:41:23 -07:00
|
|
|
|
* The distance between translations is defined as √((x₂−x₁)²+(y₂−y₁)²).
|
2019-07-24 02:57:39 -04:00
|
|
|
|
*
|
|
|
|
|
|
* @param other The translation to compute the distance to.
|
|
|
|
|
|
*
|
|
|
|
|
|
* @return The distance between the two translations.
|
|
|
|
|
|
*/
|
2019-08-17 01:00:33 -04:00
|
|
|
|
units::meter_t Distance(const Translation2d& other) const;
|
2019-07-24 02:57:39 -04:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Returns the X component of the translation.
|
|
|
|
|
|
*
|
2022-05-06 08:41:23 -07:00
|
|
|
|
* @return The X component of the translation.
|
2019-07-24 02:57:39 -04:00
|
|
|
|
*/
|
2019-08-17 01:00:33 -04:00
|
|
|
|
units::meter_t X() const { return m_x; }
|
2019-07-24 02:57:39 -04:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Returns the Y component of the translation.
|
|
|
|
|
|
*
|
2022-05-06 08:41:23 -07:00
|
|
|
|
* @return The Y component of the translation.
|
2019-07-24 02:57:39 -04:00
|
|
|
|
*/
|
2019-08-17 01:00:33 -04:00
|
|
|
|
units::meter_t Y() const { return m_y; }
|
2019-07-24 02:57:39 -04:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Returns the norm, or distance from the origin to the translation.
|
|
|
|
|
|
*
|
|
|
|
|
|
* @return The norm of the translation.
|
|
|
|
|
|
*/
|
2019-08-17 01:00:33 -04:00
|
|
|
|
units::meter_t Norm() const;
|
2019-07-24 02:57:39 -04:00
|
|
|
|
|
|
|
|
|
|
/**
|
2022-05-06 08:41:23 -07:00
|
|
|
|
* Applies a rotation to the translation in 2D space.
|
2019-07-24 02:57:39 -04:00
|
|
|
|
*
|
|
|
|
|
|
* This multiplies the translation vector by a counterclockwise rotation
|
|
|
|
|
|
* matrix of the given angle.
|
|
|
|
|
|
*
|
2022-05-06 08:41:23 -07:00
|
|
|
|
* <pre>
|
2019-07-24 02:57:39 -04:00
|
|
|
|
* [x_new] [other.cos, -other.sin][x]
|
|
|
|
|
|
* [y_new] = [other.sin, other.cos][y]
|
2022-05-06 08:41:23 -07:00
|
|
|
|
* </pre>
|
2019-07-24 02:57:39 -04:00
|
|
|
|
*
|
2022-05-06 08:41:23 -07:00
|
|
|
|
* For example, rotating a Translation2d of <2, 0> by 90 degrees will
|
|
|
|
|
|
* return a Translation2d of <0, 2>.
|
2019-07-24 02:57:39 -04:00
|
|
|
|
*
|
|
|
|
|
|
* @param other The rotation to rotate the translation by.
|
|
|
|
|
|
*
|
|
|
|
|
|
* @return The new rotated translation.
|
|
|
|
|
|
*/
|
|
|
|
|
|
Translation2d RotateBy(const Rotation2d& other) const;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2022-05-06 08:41:23 -07:00
|
|
|
|
* Returns the sum of two translations in 2D space.
|
2019-07-24 02:57:39 -04:00
|
|
|
|
*
|
2022-05-06 08:41:23 -07:00
|
|
|
|
* For example, Translation3d{1.0, 2.5} + Translation3d{2.0, 5.5} =
|
|
|
|
|
|
* Translation3d{3.0, 8.0}.
|
2019-07-24 02:57:39 -04:00
|
|
|
|
*
|
|
|
|
|
|
* @param other The translation to add.
|
|
|
|
|
|
*
|
|
|
|
|
|
* @return The sum of the translations.
|
|
|
|
|
|
*/
|
|
|
|
|
|
Translation2d operator+(const Translation2d& other) const;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2022-05-06 08:41:23 -07:00
|
|
|
|
* Returns the difference between two translations.
|
2019-07-24 02:57:39 -04:00
|
|
|
|
*
|
|
|
|
|
|
* For example, Translation2d{5.0, 4.0} - Translation2d{1.0, 2.0} =
|
2022-05-06 08:41:23 -07:00
|
|
|
|
* Translation2d{4.0, 2.0}.
|
2019-07-24 02:57:39 -04:00
|
|
|
|
*
|
|
|
|
|
|
* @param other The translation to subtract.
|
|
|
|
|
|
*
|
|
|
|
|
|
* @return The difference between the two translations.
|
|
|
|
|
|
*/
|
|
|
|
|
|
Translation2d operator-(const Translation2d& other) const;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Returns the inverse of the current translation. This is equivalent to
|
2022-05-06 08:41:23 -07:00
|
|
|
|
* rotating by 180 degrees, flipping the point over both axes, or negating all
|
|
|
|
|
|
* components of the translation.
|
2019-07-24 02:57:39 -04:00
|
|
|
|
*
|
|
|
|
|
|
* @return The inverse of the current translation.
|
|
|
|
|
|
*/
|
|
|
|
|
|
Translation2d operator-() const;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2022-05-06 08:41:23 -07:00
|
|
|
|
* Returns the translation multiplied by a scalar.
|
2019-07-24 02:57:39 -04:00
|
|
|
|
*
|
2022-05-06 08:41:23 -07:00
|
|
|
|
* For example, Translation2d{2.0, 2.5} * 2 = Translation2d{4.0, 5.0}.
|
2019-07-24 02:57:39 -04:00
|
|
|
|
*
|
|
|
|
|
|
* @param scalar The scalar to multiply by.
|
|
|
|
|
|
*
|
|
|
|
|
|
* @return The scaled translation.
|
|
|
|
|
|
*/
|
|
|
|
|
|
Translation2d operator*(double scalar) const;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2022-05-06 08:41:23 -07:00
|
|
|
|
* Returns the translation divided by a scalar.
|
2019-07-24 02:57:39 -04:00
|
|
|
|
*
|
2022-05-06 08:41:23 -07:00
|
|
|
|
* For example, Translation2d{2.0, 2.5} / 2 = Translation2d{1.0, 1.25}.
|
2019-07-24 02:57:39 -04:00
|
|
|
|
*
|
|
|
|
|
|
* @param scalar The scalar to divide by.
|
|
|
|
|
|
*
|
|
|
|
|
|
* @return The scaled translation.
|
|
|
|
|
|
*/
|
|
|
|
|
|
Translation2d operator/(double scalar) const;
|
|
|
|
|
|
|
2019-09-08 14:20:26 -04:00
|
|
|
|
/**
|
|
|
|
|
|
* Checks equality between this Translation2d and another object.
|
|
|
|
|
|
*
|
|
|
|
|
|
* @param other The other object.
|
|
|
|
|
|
* @return Whether the two objects are equal.
|
|
|
|
|
|
*/
|
|
|
|
|
|
bool operator==(const Translation2d& other) const;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Checks inequality between this Translation2d and another object.
|
|
|
|
|
|
*
|
|
|
|
|
|
* @param other The other object.
|
|
|
|
|
|
* @return Whether the two objects are not equal.
|
|
|
|
|
|
*/
|
|
|
|
|
|
bool operator!=(const Translation2d& other) const;
|
|
|
|
|
|
|
2019-07-24 02:57:39 -04:00
|
|
|
|
private:
|
2019-08-17 01:00:33 -04:00
|
|
|
|
units::meter_t m_x = 0_m;
|
|
|
|
|
|
units::meter_t m_y = 0_m;
|
2019-07-24 02:57:39 -04:00
|
|
|
|
};
|
2019-11-02 13:35:03 -05:00
|
|
|
|
|
2021-08-20 09:02:01 -07:00
|
|
|
|
WPILIB_DLLEXPORT
|
2019-11-02 13:35:03 -05:00
|
|
|
|
void to_json(wpi::json& json, const Translation2d& state);
|
|
|
|
|
|
|
2021-08-20 09:02:01 -07:00
|
|
|
|
WPILIB_DLLEXPORT
|
2019-11-02 13:35:03 -05:00
|
|
|
|
void from_json(const wpi::json& json, Translation2d& state);
|
|
|
|
|
|
|
2019-07-24 02:57:39 -04:00
|
|
|
|
} // namespace frc
|