pub trait PolyTraitConst {
    fn as_raw_Poly(&self) -> *const c_void;

    fn points(&self) -> Vector<Point> { ... }
    fn color(&self) -> Scalar { ... }
    fn thick(&self) -> i32 { ... }
    fn lt(&self) -> i32 { ... }
    fn shift(&self) -> i32 { ... }
}
Expand description

This structure represents a polygon to draw.

Required Methods§

Provided Methods§

Points to connect

The line color

The thickness of line

The Type of the line. See #LineTypes

The number of fractional bits in the point coordinate

Implementors§