pub struct LineCmd {
pub color: u32,
pub vertices: [Vec3; 2],
}Expand description
Line Type 2 LDraw command: Draw a segment between 2 vertices.
Fields§
§color: u32Color code of the primitive.
vertices: [Vec3; 2]Vertices of the segment.
Trait Implementations§
impl StructuralPartialEq for LineCmd
Auto Trait Implementations§
impl Freeze for LineCmd
impl RefUnwindSafe for LineCmd
impl Send for LineCmd
impl Sync for LineCmd
impl Unpin for LineCmd
impl UnwindSafe for LineCmd
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