[][src]Function spatialite_sys::gaiaGeomCollPreparedDisjoint

pub unsafe extern "C" fn gaiaGeomCollPreparedDisjoint(
    p_cache: *const c_void,
    geom1: gaiaGeomCollPtr,
    blob1: *mut c_uchar,
    size1: c_int,
    geom2: gaiaGeomCollPtr,
    blob2: *mut c_uchar,
    size2: c_int
) -> c_int

Spatial relationship evalution: Disjoint (GEOSPreparedGeometry)

\param p_cache a memory pointer returned by spatialite_alloc_connection() \param geom1 the first Geometry object to be evaluated \param blob1 the BLOB corresponding to the first Geometry \param size1 the size (in bytes) of the first BLOB \param geom2 the second Geometry object to be evaluated \param blob2 the BLOB corresponding to the second Geometry \param size2 the size (in bytes) of the second BLOB

\return 0 if false: any other value if true

\sa gaiaGeomCollDisjoint, gaiaGeomCollDisjoint_r

\note reentrant and thread-safe.

\remark \b GEOS support required.