[geometry] fixed documentation of return_buffer and exterior_ring

[SVN r84697]
This commit is contained in:
Barend Gehrels
2013-06-08 17:49:41 +00:00
parent f92409c82f
commit 300c7ccbfd
2 changed files with 5 additions and 4 deletions

View File

@@ -145,11 +145,12 @@ inline void buffer(Input const& geometry_in, Output& geometry_out,
\tparam Distance \tparam_numeric
\param geometry \param_geometry
\param distance The distance to be used for the buffer
\param chord_length (optional) The length of the chord's in the generated arcs around points or bends
\param chord_length (optional) The length of the chord's in the generated arcs
around points or bends
\return \return_calc{buffer}
*/
template <typename Output, typename Input, typename T>
Output return_buffer(Input const& geometry, T const& distance, T const& chord_length = -1)
template <typename Output, typename Input, typename Distance>
Output return_buffer(Input const& geometry, Distance const& distance, Distance const& chord_length = -1)
{
concept::check<Input const>();
concept::check<Output>();

View File

@@ -101,7 +101,7 @@ struct exterior_ring<polygon_tag, Polygon>
\brief Function to get the exterior_ring ring of a polygon
\ingroup exterior_ring
\note OGC compliance: instead of ExteriorRing
\tparam P polygon type
\tparam Polygon polygon type
\param polygon the polygon to get the exterior ring from
\return a reference to the exterior ring
*/