1
1
<!--
2
- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.235 2005/01/22 22:56:35 momjian Exp $
2
+ $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.236 2005/01/26 20:42:19 tgl Exp $
3
3
PostgreSQL documentation
4
4
-->
5
5
@@ -6096,7 +6096,7 @@ SELECT TIMESTAMP 'now';
6096
6096
<row>
6097
6097
<entry><literal><function>circle</function>(<type>point</type>, <type>double precision</type>)</literal></entry>
6098
6098
<entry><type>circle</type></entry>
6099
- <entry>point and radius to circle</entry>
6099
+ <entry>center and radius to circle</entry>
6100
6100
<entry><literal>circle(point '(0,0)', 2.0)</literal></entry>
6101
6101
</row>
6102
6102
<row>
@@ -6117,12 +6117,31 @@ SELECT TIMESTAMP 'now';
6117
6117
<entry>polygon to path</entry>
6118
6118
<entry><literal>path(polygon '((0,0),(1,1),(2,0))')</literal></entry>
6119
6119
</row>
6120
+ <row>
6121
+ <entry><literal><function>point</function>(<type>double
6122
+ precision</type>, <type>double precision</type>)</literal></entry>
6123
+ <entry><type>point</type></entry>
6124
+ <entry>construct point</entry>
6125
+ <entry><literal>point(23.4, -44.5)</literal></entry>
6126
+ </row>
6127
+ <row>
6128
+ <entry><literal><function>point</function>(<type>box</type>)</literal></entry>
6129
+ <entry><type>point</type></entry>
6130
+ <entry>center of box</entry>
6131
+ <entry><literal>point(box '((-1,0),(1,0))')</literal></entry>
6132
+ </row>
6120
6133
<row>
6121
6134
<entry><literal><function>point</function>(<type>circle</type>)</literal></entry>
6122
6135
<entry><type>point</type></entry>
6123
6136
<entry>center of circle</entry>
6124
6137
<entry><literal>point(circle '((0,0),2.0)')</literal></entry>
6125
6138
</row>
6139
+ <row>
6140
+ <entry><literal><function>point</function>(<type>lseg</type>)</literal></entry>
6141
+ <entry><type>point</type></entry>
6142
+ <entry>center of lseg</entry>
6143
+ <entry><literal>point(lseg '((-1,0),(1,0))')</literal></entry>
6144
+ </row>
6126
6145
<row>
6127
6146
<entry><literal><function>point</function>(<type>lseg</type>, <type>lseg</type>)</literal></entry>
6128
6147
<entry><type>point</type></entry>