Struct bcar::Size [−][src]
Structure to hold car dimensions.
Fields
curb_to_curb: f64width: f64wheelbase: f64distance_to_front: f64length: f64Implementations
impl Size[src]
pub fn new(
curb_to_curb: f64,
width: f64,
wheelbase: f64,
distance_to_front: f64,
length: f64
) -> Size[src]
curb_to_curb: f64,
width: f64,
wheelbase: f64,
distance_to_front: f64,
length: f64
) -> Size
pub fn default() -> Size[src]
Return default size.
Default size is based on Porsche Panamera 971 dimensions.
Examples
let s = bcar::Size::default(); assert_eq!(s, bcar::Size::new(11.8872, 2.165, 2.950, 3.9865, 5.049));
pub fn diagonal_length(&self) -> f64[src]
pub fn max_steer(&self) -> f64[src]
Return maximum steering angle for the car properties.
Examples
let s = bcar::Size::default(); assert!((s.max_steer() - 0.6263322191718842).abs() < 1e-10);
pub fn perfect_parking_slot_length(&self) -> f64[src]
Return the length of the perfect parking slot.
The width of the slot is the same as the width of the car.
References
- Simon R. Blackburn The Geometry of Perfect Parking
- https://www.ma.rhul.ac.uk/SRBparking
Trait Implementations
impl Clone for Size[src]
impl Copy for Size[src]
impl Debug for Size[src]
impl PartialEq<Size> for Size[src]
impl StructuralPartialEq for Size[src]
Auto Trait Implementations
impl RefUnwindSafe for Size[src]
impl Send for Size[src]
impl Sync for Size[src]
impl Unpin for Size[src]
impl UnwindSafe for Size[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,