]> granicus.if.org Git - postgis/commitdiff
fixed some of the buch of broken comments
authorSandro Santilli <strk@keybit.net>
Thu, 19 Aug 2004 09:28:37 +0000 (09:28 +0000)
committerSandro Santilli <strk@keybit.net>
Thu, 19 Aug 2004 09:28:37 +0000 (09:28 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@688 b70326c6-7e19-0410-871a-916f4a2858ee

lwgeom/lwgeom.h

index 273a03c1ec804777800589c2924515304be0ffbb..cec39ab5bbf21aefa399979d349b79d849be0fce 100644 (file)
@@ -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);
 
 
-
-