Struct xcb::x::PolyLine[][src]

pub struct PolyLine<'a> {
    pub coordinate_mode: CoordMode,
    pub drawable: Drawable,
    pub gc: Gcontext,
    pub points: &'a [Point],
}
Expand description

Draw lines

Draws points.len()-1 lines between each pair of points (point[i], point[i+1]) in the points array. The lines are drawn in the order listed in the array. They join correctly at all intermediate points, and if the first and last points coincide, the first and last lines also join correctly. For any given line, a pixel is not drawn more than once. If thin (zero line-width) lines intersect, the intersecting pixels are drawn multiple times. If wide lines intersect, the intersecting pixels are drawn only once, as though the entire request were a single, filled shape.

Example

// Draw a straight line on a window
let points = &[
    x::Point { x: 10, y: 10 },
    x::Point { x: 100, y: 10 },
];
conn.send_request(&x::PolyLine {
    coordinate_mode: x::CoordMode::Origin,
    drawable: x::Drawable::Window(window),
    gc,
    points,
});
conn.flush()?;

This request has no reply.

Associated cookie types are VoidCookie and VoidCookieChecked.

Fields

coordinate_mode: CoordMode
drawable: Drawable

The drawable to draw the line(s) on.

gc: Gcontext

The graphics context to use.

points: &'a [Point]

An array of points.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Actual implementation of the request sending Read more

The default cookie associated to this request.

false if the request returns a reply, true otherwise.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.