[Gislite-admins] SF.net SVN: gislite: [6] trunk
Status: Planning
Brought to you by:
ctomasin
|
From: <cto...@us...> - 2007-08-24 13:57:33
|
Revision: 6
http://gislite.svn.sourceforge.net/gislite/?rev=6&view=rev
Author: ctomasin
Date: 2007-08-24 06:57:30 -0700 (Fri, 24 Aug 2007)
Log Message:
-----------
Modified @param structural commands in comments
Modified Paths:
--------------
trunk/sqlfunc.c
trunk/wkgfunc.c
Modified: trunk/sqlfunc.c
===================================================================
--- trunk/sqlfunc.c 2007-08-24 11:15:19 UTC (rev 5)
+++ trunk/sqlfunc.c 2007-08-24 13:57:30 UTC (rev 6)
@@ -10,7 +10,7 @@
* sqlite> SELECT (toWKT(BLOB_POINT)) FROM testGeom WHERE INDEX=1;
* sqlite> POINT(1.1 1.2 1.3 4.4)
*
- * @param blob well-known binary to sqlite by its own function
+ * @param argv blob well-known binary to sqlite by its own function
*
* @return string geometry as well-known text
*/
@@ -55,7 +55,7 @@
* Ex:
* sqlite> INSERT INTO testGeom (BLOB_POINT) VALUES (toWKB('POINT(1.2 1.3 1.4 1.5)'));
*
- * @param string geometry as well-known text
+ * @param argv string geometry as well-known text
*
* @return blob well-known binary to sqlite by its own function
*/
@@ -100,7 +100,7 @@
* sqlite> SELECT X(BLOB_POINT) FROM testGeom WHERE INDEX=1;
* sqlite> 5.8926358638273
*
- * @param blob containing WKBGeometry
+ * @param argv blob containing WKBGeometry
*
* @return double x coordinate
*/
@@ -133,7 +133,7 @@
* sqlite> SELECT Y(BLOB_POINT) FROM testGeom WHERE INDEX=1;
* sqlite> 1.2837445657488
*
- * @param blob containing WKBGeometry
+ * @param argv blob containing WKBGeometry
*
* @return double y coordinate
*/
@@ -165,7 +165,7 @@
* sqlite> SELECT Z(BLOB_POINT) FROM testGeom WHERE INDEX=1;
* sqlite> 0.0
*
- * @param blob containing WKBGeometry
+ * @param argv blob containing WKBGeometry
*
* @return double z coordinate
*/
@@ -198,7 +198,7 @@
* sqlite> SELECT M(BLOB_POINT) FROM testGeom WHERE INDEX=1;
* sqlite> 5.0
*
- * @param blob containing WKBGeometry
+ * @param argv blob containing WKBGeometry
*
* @return double m value
*/
@@ -231,7 +231,7 @@
* sqlite> SELECT AsText(StartPoint(GeomFromBinary(BLOB_LINE))) FROM testGeom WHERE INDEX=1;
* sqlite> POINT(1.1 1.2 1.3 4.4)
*
- * @param WKBGeometry structure g containing LineString
+ * @param g WKBGeometry structure containing LineString
*
* @return WKBGeometry structure containing WKBPoint
*/
@@ -244,7 +244,7 @@
* sqlite> SELECT AsText(EndPoint(GeomFromBinary(BLOB_LINE))) FROM testGeom WHERE INDEX=1;
* sqlite> POINT(5.1 5.2 5.3 4.4)
*
- * @param WKBGeometry structure g containing LineString
+ * @param g WKBGeometry structure containing LineString
*
* @return WKBGeometry structure containing WKBPoint
*/
@@ -257,7 +257,7 @@
* sqlite> SELECT Length(GeomFromBinary(BLOB_LINE)) FROM testGeom WHERE INDEX=1;
* sqlite> 5.8926358638273
*
- * @param WKBGeometry structure g containing LineString
+ * @param g WKBGeometry structure containing LineString
*
* @return double length
*/
@@ -270,7 +270,7 @@
* sqlite> SELECT NumPoints(GeomFromBinary(BLOB_LINE)) FROM testGeom WHERE INDEX=1;
* sqlite> 12
*
- * @param WKBGeometry structure g containing LineString
+ * @param g WKBGeometry structure containing LineString
*
* @return integer number of points
*/
@@ -283,8 +283,8 @@
* sqlite> SELECT AsText(PointN(GeomFromBinary(BLOB_LINE),10)) FROM testGeom WHERE INDEX=1;
* sqlite> POINT(1.1 1.2 0.0 0.0)
*
- * @param WKBGeometry structure g containing LineString
- * @param integer point position starting at 0
+ * @param g WKBGeometry structure containing LineString
+ * @param n integer point position starting at 0
*
* @return WKBGeometry structure containing WKBPoint
*/
@@ -298,7 +298,7 @@
* sqlite> SELECT IsRing(GeomFromBinary(BLOB_LINE)) FROM testGeom WHERE INDEX=1;
* sqlite> 1
*
- * @param WKBGeometry structure g containing LineString
+ * @param g WKBGeometry structure containing LineString
*
* @return boolean 1 if LineString is a ring 0 if it is not, -1 if NULL
*/
Modified: trunk/wkgfunc.c
===================================================================
--- trunk/wkgfunc.c 2007-08-24 11:15:19 UTC (rev 5)
+++ trunk/wkgfunc.c 2007-08-24 13:57:30 UTC (rev 6)
@@ -44,8 +44,8 @@
}
/**
* function FromText
- * @param pointer to string in WKT encoding
- * @param pointer to WKGeometry to be filled
+ * @param pWKT pointer to string in WKT encoding
+ * @param pGeom pointer to WKGeometry to be filled
*
* @return integer error code
*/
@@ -113,9 +113,10 @@
/**
* function AsText
- * @param pointer to WKGeometry to be encoded
- *
- * @return pointer to string to be filled
+ * @param pGeom pointer to WKGeometry to be encoded
+ * @param pWKT pointer to string containing the text rapresentation created by the function
+ *
+ * @return as pWKT
*/
char* AsText(WKBGeometry *pGeom){
int len, i;
@@ -153,8 +154,8 @@
/**
* function FromBinary
- * @param pointer to unsigned char to be read
- * @param pointer to WKGeometry to be filled
+ * @param pBin pointer to unsigned char to be read
+ * @param pGeom pointer to WKGeometry to be filled
*
* @return integer error code
*/
@@ -200,7 +201,7 @@
/**
* function AsBinary
- * @param pointer to WKGeometry to be converted
+ * @param pGeom pointer to WKGeometry to be converted
*
* @return pointer to unsigned char to be filled
*/
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|