]> granicus.if.org Git - postgis/commitdiff
Added postgis_algo.c prototypes
authorSandro Santilli <strk@keybit.net>
Tue, 28 Oct 2003 11:16:46 +0000 (11:16 +0000)
committerSandro Santilli <strk@keybit.net>
Tue, 28 Oct 2003 11:16:46 +0000 (11:16 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@334 b70326c6-7e19-0410-871a-916f4a2858ee

postgis.h

index 51f9d11596722233e59d34898d7a1836e816ee09..2f9a5c44d681691dd95f6c34c5d08a1503397800 100644 (file)
--- a/postgis.h
+++ b/postgis.h
@@ -11,6 +11,9 @@
  *
  **********************************************************************
  * $Log$
+ * Revision 1.35  2003/10/28 11:16:46  strk
+ * Added postgis_algo.c prototypes
+ *
  * Revision 1.34  2003/10/16 16:35:42  dblasby
  * added #include <sys/types.h> for people using freeBSD (strk@keybit.net patch)
  *
@@ -439,6 +442,11 @@ GEOMETRY *makeNullGeometry(int SRID);
 
 void compressType(GEOMETRY *g);
 
+void DP_findsplit(POINT3D *, int, int, int, int *, double *);
+void DP_simplify(POINT3D *, int, POINT3D **, int *, double);
+char *simplify_line3d(LINE3D *, double);
+char *simplify_polygon3d(POLYGON3D *, double);
+char *simplify_point3d(POINT3D *, double);
 
 //exposed to psql
 
@@ -605,6 +613,7 @@ Datum geometry_from_text_line(PG_FUNCTION_ARGS);
 Datum geometry_from_text_mline(PG_FUNCTION_ARGS);
 Datum geometry_from_text_gc(PG_FUNCTION_ARGS);
 Datum isempty(PG_FUNCTION_ARGS);
+Datum simplify(PG_FUNCTION_ARGS);
 
 /*--------------------------------------------------------------------
  * Useful floating point utilities and constants.