Struct polylabel::Array [] [src]

#[repr(C)]
pub struct Array { pub data: *const c_void, pub len: size_t, }

Wrapper for a void pointer to a sequence of 2-element arrays representing points, and the sequence length

Used for outer Polygon rings. data is a Vec<[c_double; 2]>

Fields