pub struct Poly4D {
pub duration: f32,
pub x: Poly,
pub y: Poly,
pub z: Poly,
pub yaw: Poly,
}Expand description
A 4D polynomial trajectory segment (uncompressed format)
This represents a single segment of a trajectory defined by polynomials for x, y, z, and yaw coordinates over a duration of time.
Fields§
§duration: f32Duration of this segment in seconds
x: PolyPolynomial for x coordinate
y: PolyPolynomial for y coordinate
z: PolyPolynomial for z coordinate
yaw: PolyPolynomial for yaw angle
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Poly4D
impl RefUnwindSafe for Poly4D
impl Send for Poly4D
impl Sync for Poly4D
impl Unpin for Poly4D
impl UnsafeUnpin for Poly4D
impl UnwindSafe for Poly4D
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