Skip to content

Commit

Permalink
Merge branch 'add_angular_jerk' of github.com:ozrien/allwpilib into a…
Browse files Browse the repository at this point in the history
…dd_angular_jerk
  • Loading branch information
ctr-ozrien committed Aug 28, 2023
2 parents e545375 + 3ed8435 commit ec7cc88
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions wpimath/src/main/native/include/units/angular_jerk.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,14 @@ namespace units {
* @anchor angularJerkContainers
* @sa See unit_t for more information on unit type containers.
*/
UNIT_ADD(angular_jerk, radians_per_second_cubed,
radians_per_second_cubed,rad_per_s_cu,
unit<std::ratio<1>, units::category::angular_jerk_unit>)
UNIT_ADD(angular_jerk, degrees_per_second_cubed,
degrees_per_second_cubed,deg_per_s_cu,
compound_unit<angle::degrees, inverse<cubed<time::seconds>>>)
UNIT_ADD(angular_jerk, turns_per_second_cubed,
turns_per_second_cubed,tr_per_s_cu,
compound_unit<angle::turns, inverse<cubed<time::seconds>>>)
UNIT_ADD(angular_jerk, radians_per_second_cubed, radians_per_second_cubed,
rad_per_s_cu, unit<std::ratio<1>, units::category::angular_jerk_unit>)
UNIT_ADD(angular_jerk, degrees_per_second_cubed, degrees_per_second_cubed,
deg_per_s_cu,
compound_unit<angle::degrees, inverse<cubed<time::seconds>>>)
UNIT_ADD(angular_jerk, turns_per_second_cubed, turns_per_second_cubed,
tr_per_s_cu,
compound_unit<angle::turns, inverse<cubed<time::seconds>>>)

UNIT_ADD_CATEGORY_TRAIT(angular_jerk)

Expand Down

0 comments on commit ec7cc88

Please sign in to comment.