pub struct LineMark {
pub start_x_m: f32,
pub start_y_m: f32,
pub end_x_m: f32,
pub end_y_m: f32,
pub color: u32,
pub visible: bool,
}Expand description
Line mark information.
Fields§
§start_x_m: f32Start X coordinate (meters)
start_y_m: f32Start Y coordinate (meters)
end_x_m: f32End X coordinate (meters)
end_y_m: f32End Y coordinate (meters)
color: u32RGB color
visible: boolVisible flag
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LineMark
impl RefUnwindSafe for LineMark
impl Send for LineMark
impl Sync for LineMark
impl Unpin for LineMark
impl UnwindSafe for LineMark
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