mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-25 01:41:43 +00:00
HAND FIXES: Manual cleanup of namespaces
This commit is contained in:
committed by
Peter Johnson
parent
ad138270a8
commit
3f740894c9
@@ -2,7 +2,7 @@ classes:
|
||||
wpi::sim::DifferentialDrivetrainSim:
|
||||
typealias:
|
||||
- wpi::math::DCMotor
|
||||
- template <int S, int I, int O> using wpi::math::LinearSystem = wpi::math::LinearSystem<S, I, O>
|
||||
- template <int S, int I, int O> using LinearSystem = wpi::math::LinearSystem<S, I, O>
|
||||
methods:
|
||||
DifferentialDrivetrainSim:
|
||||
overloads:
|
||||
|
||||
@@ -2,8 +2,8 @@ classes:
|
||||
wpi::sim::ElevatorSim:
|
||||
typealias:
|
||||
- wpi::math::DCMotor
|
||||
- template <int S, int I, int O> using wpi::math::LinearSystem = wpi::math::LinearSystem<S, I, O>
|
||||
- template <int I> using wpi::math::Vectord = wpi::math::Vectord<I>
|
||||
- template <int S, int I, int O> using LinearSystem = wpi::math::LinearSystem<S, I, O>
|
||||
- template <int I> using Vectord = wpi::math::Vectord<I>
|
||||
methods:
|
||||
ElevatorSim:
|
||||
overloads:
|
||||
|
||||
@@ -2,7 +2,7 @@ classes:
|
||||
wpi::sim::FlywheelSim:
|
||||
typealias:
|
||||
- wpi::math::DCMotor
|
||||
- template <int S, int I, int O> using wpi::math::LinearSystem = wpi::math::LinearSystem<S, I, O>
|
||||
- template <int S, int I, int O> using LinearSystem = wpi::math::LinearSystem<S, I, O>
|
||||
methods:
|
||||
FlywheelSim:
|
||||
overloads:
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
classes:
|
||||
wpi::sim::LinearSystemSim:
|
||||
typealias:
|
||||
- template <int S, int I, int O> using wpi::math::LinearSystem = wpi::math::LinearSystem<S, I, O>
|
||||
- template <int I> using wpi::math::Vectord = wpi::math::Vectord<I>
|
||||
- template <int S, int I, int O> using LinearSystem = wpi::math::LinearSystem<S, I, O>
|
||||
- template <int I> using Vectord = wpi::math::Vectord<I>
|
||||
template_params:
|
||||
- int States
|
||||
- int Inputs
|
||||
|
||||
@@ -2,8 +2,8 @@ classes:
|
||||
wpi::sim::SingleJointedArmSim:
|
||||
typealias:
|
||||
- wpi::math::DCMotor
|
||||
- template <int S, int I, int O> using wpi::math::LinearSystem = wpi::math::LinearSystem<S, I, O>
|
||||
- template <int I> using wpi::math::Vectord = wpi::math::Vectord<I>
|
||||
- template <int S, int I, int O> using LinearSystem = wpi::math::LinearSystem<S, I, O>
|
||||
- template <int I> using Vectord = wpi::math::Vectord<I>
|
||||
methods:
|
||||
SingleJointedArmSim:
|
||||
overloads:
|
||||
|
||||
@@ -8,14 +8,14 @@ void ResetSmartDashboardInstance();
|
||||
void ResetMotorSafety();
|
||||
} // namespace wpi::impl
|
||||
|
||||
namespace wpi::impl {
|
||||
namespace wpi::util::impl {
|
||||
void ResetSendableRegistry();
|
||||
} // namespace wpi::impl
|
||||
|
||||
void resetWpilibSimulationData() {
|
||||
wpi::impl::ResetSmartDashboardInstance();
|
||||
wpi::impl::ResetMotorSafety();
|
||||
wpi::impl::ResetSendableRegistry();
|
||||
wpi::util::impl::ResetSendableRegistry();
|
||||
}
|
||||
|
||||
void resetMotorSafety() {
|
||||
|
||||
Reference in New Issue
Block a user