Files
allwpilib/wpimath/src/main/native/include/wpi/math/kinematics/SwerveModulePosition.hpp
2025-11-07 23:09:21 -08:00

49 lines
1.4 KiB
C++

// 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.
#pragma once
#include "wpi/math/geometry/Rotation2d.hpp"
#include "wpi/units/length.hpp"
#include "wpi/units/math.hpp"
#include "wpi/util/MathExtras.hpp"
#include "wpi/util/SymbolExports.hpp"
namespace frc {
/**
* Represents the position of one swerve module.
*/
struct WPILIB_DLLEXPORT SwerveModulePosition {
/**
* Distance the wheel of a module has traveled
*/
units::meter_t distance = 0_m;
/**
* Angle of the module.
*/
Rotation2d angle;
/**
* Checks equality between this SwerveModulePosition and another object.
*
* @param other The other object.
* @return Whether the two objects are equal.
*/
constexpr bool operator==(const SwerveModulePosition& other) const {
return units::math::abs(distance - other.distance) < 1E-9_m &&
angle == other.angle;
}
constexpr SwerveModulePosition Interpolate(
const SwerveModulePosition& endValue, double t) const {
return {wpi::Lerp(distance, endValue.distance, t),
wpi::Lerp(angle, endValue.angle, t)};
}
};
} // namespace frc
#include "wpi/math/kinematics/proto/SwerveModulePositionProto.hpp"
#include "wpi/math/kinematics/struct/SwerveModulePositionStruct.hpp"