Struct rubullet::AddDebugLineOptions[][src]

pub struct AddDebugLineOptions {
    pub line_color_rgb: [f64; 3],
    pub line_width: f64,
    pub life_time: f64,
    pub parent_object_id: Option<BodyId>,
    pub parent_link_index: Option<usize>,
    pub replace_item_id: Option<ItemId>,
}

Represents options for add_user_debug_line

Fields

line_color_rgb: [f64; 3]

RGB color [Red, Green, Blue] each component in range [0..1]. Default is [1.,1.,1.]

line_width: f64

line width (limited by OpenGL implementation). Default is 1.

life_time: f64

Use 0 for a permanent line, or positive time in seconds (afterwards the line with be removed automatically). Default is 0.

parent_object_id: Option<BodyId>

If specified the line will be drawn relative to the parents object coordinate system.

parent_link_index: Option<usize>

When using “parent_object_id” you can also define in which link the coordinate system should be. By default it is the base frame (-1)

replace_item_id: Option<ItemId>

replace an existing line (to improve performance and to avoid flickering of remove/add)

Trait Implementations

impl Default for AddDebugLineOptions[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,