use-rotation 0.0.1

Rotational motion and angular dynamics helpers for RustUse
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Convenient re-exports for the public rotation helpers.

pub use crate::{
    AngularState, RotatingBody, angular_acceleration, angular_acceleration_from_torque,
    angular_displacement, angular_momentum, angular_velocity,
    angular_velocity_from_angular_momentum, angular_velocity_from_rotational_kinetic_energy,
    angular_velocity_from_tangential_speed, centripetal_acceleration_from_angular_velocity,
    centripetal_acceleration_from_tangential_speed, degrees_from_radians, final_angular_velocity,
    final_angular_velocity_from_displacement, final_angular_velocity_squared,
    hollow_sphere_moment_of_inertia, point_mass_moment_of_inertia, radians_from_degrees,
    radians_from_revolutions, revolutions_from_radians, rod_moment_of_inertia_about_center,
    rod_moment_of_inertia_about_end, rotational_kinetic_energy, solid_disk_moment_of_inertia,
    solid_sphere_moment_of_inertia, tangential_acceleration, tangential_speed,
    thin_ring_moment_of_inertia,
};