pub struct IsoLaneVelocity {
pub sigma_v: f64,
pub rho_v: f64,
pub eta_v: f64,
}
Expand description
Isometric velocity vector in a Lane
-frame.
sigma_v, rho_v, and eta_v are the components of velocity in a (sigma, rho, eta) coordinate system. (sigma, rho, eta) have the same orientation as the (s, r, h) at any given point in space, however they form an isometric system with a Cartesian distance metric. Hence, IsoLaneVelocity represents a “real” physical velocity vector (albeit with an orientation relative to the road surface).
Fields§
§sigma_v: f64
§rho_v: f64
§eta_v: f64
Implementations§
Trait Implementations§
Source§impl Clone for IsoLaneVelocity
impl Clone for IsoLaneVelocity
Source§fn clone(&self) -> IsoLaneVelocity
fn clone(&self) -> IsoLaneVelocity
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for IsoLaneVelocity
impl Debug for IsoLaneVelocity
Source§impl Default for IsoLaneVelocity
impl Default for IsoLaneVelocity
Source§fn default() -> IsoLaneVelocity
fn default() -> IsoLaneVelocity
Returns the “default value” for a type. Read more
Source§impl PartialEq for IsoLaneVelocity
impl PartialEq for IsoLaneVelocity
impl Copy for IsoLaneVelocity
impl StructuralPartialEq for IsoLaneVelocity
Auto Trait Implementations§
impl Freeze for IsoLaneVelocity
impl RefUnwindSafe for IsoLaneVelocity
impl Send for IsoLaneVelocity
impl Sync for IsoLaneVelocity
impl Unpin for IsoLaneVelocity
impl UnwindSafe for IsoLaneVelocity
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)