From: Sandro Santilli Date: Thu, 19 Aug 2004 09:28:37 +0000 (+0000) Subject: fixed some of the buch of broken comments X-Git-Tag: pgis_0_9_1~106 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=331e562e440f1afeaddc5847127cf41442703cb5;p=postgis fixed some of the buch of broken comments git-svn-id: http://svn.osgeo.org/postgis/trunk@688 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/lwgeom/lwgeom.h b/lwgeom/lwgeom.h index 273a03c1e..cec39ab5b 100644 --- a/lwgeom/lwgeom.h +++ b/lwgeom/lwgeom.h @@ -190,11 +190,12 @@ WHERE extern bool lwgeom_hasSRID(unsigned char type); // true iff S bit is set -extern int lwgeom_ndims(unsigned char type); // true iff D bit is set +extern bool lwgeom_hasBBOX(unsigned char type); // true iff B bit set +extern int lwgeom_ndims(unsigned char type); // returns the DD value extern int lwgeom_getType(unsigned char type); // returns the tttt value + extern unsigned char lwgeom_makeType(int ndims, char hasSRID, int type); extern unsigned char lwgeom_makeType_full(int ndims, char hasSRID, int type, bool hasBBOX); -extern bool lwgeom_hasBBOX(unsigned char type); // true iff B bit set // all the base types (point/line/polygon) will have a // basic constructor, basic de-serializer, basic serializer, and @@ -623,5 +624,3 @@ extern float LWGEOM_Maxf(float a, float b); extern BOX3D *lw_geom_getBB_simple(char *serialized_form); - -