You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think we need to move the ContainmentMode enum from polygon.h to the public API in h3api.h.in:
/** * Values representing polyfill containment modes, to be used in * the `flags` bit field. */typedefenum {
CONTAINMENT_CENTER=0, ///< Cell center is contained in the shapeCONTAINMENT_FULL=1, ///< Cell is fully contained in the shapeCONTAINMENT_OVERLAPPING=2, ///< Cell overlaps the shape at any pointCONTAINMENT_OVERLAPPING_BBOX=3, ///< Cell bounding box overlaps shapeCONTAINMENT_INVALID=4///< This mode is invalid and should not be used
} ContainmentMode;
The text was updated successfully, but these errors were encountered:
I think we need to move the
ContainmentMode
enum frompolygon.h
to the public API inh3api.h.in
:The text was updated successfully, but these errors were encountered: