Module: RGeo::Geos::Analysis
- Defined in:
- ext/geos_c_impl/analysis.c
Class Method Summary collapse
- .ccw? ⇒ Boolean
-
.RGeo::Geos::Analysis.ccw_supported? ⇒ Boolean
Checks if the RGEO_GEOS_SUPPORTS_ISCCW macro is defined, returns
trueif it is,falseotherwise.
Class Method Details
.ccw? ⇒ Boolean
.RGeo::Geos::Analysis.ccw_supported? ⇒ Boolean
Checks if the RGEO_GEOS_SUPPORTS_ISCCW macro is defined, returns true if it is, false otherwise
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 } |