pub struct CompressedStart {
pub x: f32,
pub y: f32,
pub z: f32,
pub yaw: f32,
}Expand description
Starting point for a compressed trajectory
Compressed trajectories begin with a CompressedStart that defines
the initial position and yaw, followed by CompressedSegments.
Fields§
§x: f32X coordinate in meters
y: f32Y coordinate in meters
z: f32Z coordinate in meters
yaw: f32Yaw angle in radians
Implementations§
Trait Implementations§
Source§impl Clone for CompressedStart
impl Clone for CompressedStart
Source§fn clone(&self) -> CompressedStart
fn clone(&self) -> CompressedStart
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for CompressedStart
impl RefUnwindSafe for CompressedStart
impl Send for CompressedStart
impl Sync for CompressedStart
impl Unpin for CompressedStart
impl UnsafeUnpin for CompressedStart
impl UnwindSafe for CompressedStart
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