Module: RGeo::Geos::Analysis

Defined in:
ext/geos_c_impl/analysis.c

Class Method Summary collapse

Class Method Details

.ccw?Boolean

Returns:

  • (Boolean)

.RGeo::Geos::Analysis.ccw_supported?Boolean

Checks if the RGEO_GEOS_SUPPORTS_ISCCW macro is defined, returns true if it is, false otherwise

Returns:

  • (Boolean)


57
58
59
60
61
62
63
64
65
# File 'ext/geos_c_impl/analysis.c', line 57

VALUE
rgeo_geos_analysis_supports_ccw(VALUE self)
{
#ifdef RGEO_GEOS_SUPPORTS_ISCCW
  return Qtrue;
#else
  return Qfalse;
#endif
}