]> granicus.if.org Git - postgis/commitdiff
make example fit the diagram in text
authorRegina Obe <lr@pcorp.us>
Tue, 26 May 2009 17:24:41 +0000 (17:24 +0000)
committerRegina Obe <lr@pcorp.us>
Tue, 26 May 2009 17:24:41 +0000 (17:24 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@4105 b70326c6-7e19-0410-871a-916f4a2858ee

doc/reference.xml

index 0bc0d53c7278ac4b39dba4a9d419f4d656a7aa5a..6a715dc267122931329fe40e38dcd14e029479aa 100644 (file)
@@ -11548,8 +11548,8 @@ SELECT ST_Buffer(ST_GeomFromText('POINT(50 50)'), 20) As smallc,
                        </informaltable>
 
 <programlisting>--A buffered point approximates a circle
--- A buffered point forcing approximation of
--- 4 points per circle is poly with 16 sides
+-- A buffered point forcing approximation of (see diagram)
+-- 2 points per circle is poly with 8 sides (see diagram)
 SELECT ST_NPoints(ST_Buffer(ST_GeomFromText('POINT(100 90)'), 50)) As promisingcircle_pcount,
 ST_NPoints(ST_Buffer(ST_GeomFromText('POINT(100 90)'), 50, 2)) As lamecircle_pcount;