rapier3d/control/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Utilities for controlling the trajectories of objects in a non-physical way.

pub use self::character_controller::{
    CharacterAutostep, CharacterCollision, CharacterLength, EffectiveCharacterMovement,
    KinematicCharacterController,
};
pub use self::pid_controller::{PdController, PdErrors, PidController};

#[cfg(feature = "dim3")]
pub use self::ray_cast_vehicle_controller::{DynamicRayCastVehicleController, Wheel, WheelTuning};

mod character_controller;

mod pid_controller;
#[cfg(feature = "dim3")]
mod ray_cast_vehicle_controller;