]> granicus.if.org Git - postgis/commitdiff
#2753 Add ST_IsPlanar (hmm did I forget to put in this ST_MinkowskiSum)
authorRegina Obe <lr@pcorp.us>
Tue, 24 Jun 2014 20:43:03 +0000 (20:43 +0000)
committerRegina Obe <lr@pcorp.us>
Tue, 24 Jun 2014 20:43:03 +0000 (20:43 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@12643 b70326c6-7e19-0410-871a-916f4a2858ee

postgis/sfcgal.sql.in

index 1ff6e0fc0b924f9bcb4d1c9c610d224355d2e680..8011991b8dfc5e31d8748673136d20954f370f62 100644 (file)
@@ -67,4 +67,10 @@ CREATE OR REPLACE FUNCTION ST_StraightSkeleton(geometry)
        LANGUAGE 'c' IMMUTABLE STRICT
        COST 100;
 
+CREATE OR REPLACE FUNCTION ST_IsPlanar(geometry)
+       RETURNS boolean
+       AS 'MODULE_PATHNAME','sfcgal_is_planar'
+       LANGUAGE 'c' IMMUTABLE STRICT
+       COST 100;
+
 COMMIT;