#[repr(C)]pub struct Array {
pub data: *const c_void,
pub len: size_t,
}
Expand description
Wrapper for a void pointer to a sequence of 2-element arrays representing points, and the sequence length. Used for FFI.
Used for the outer Polygon shell. data
is a Vec<[c_double; 2]>
.
Fields§
§data: *const c_void
§len: size_t