Skip to content

Commit

Permalink
Manually fix some multiline indented lists
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Jun 11, 2020
1 parent f1dbf4c commit 481ece3
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 20 deletions.
14 changes: 4 additions & 10 deletions src/core/geometry/qgsgeometry.h
Expand Up @@ -588,8 +588,7 @@ class CORE_EXPORT QgsGeometry
* subset of useful cases. Examples of these are:
*
* - computing distance between Linestrings that are roughly parallel to each other,
*
* and roughly equal in length. This occurs in matching linear networks.
* and roughly equal in length. This occurs in matching linear networks.
* - Testing similarity of geometries.
*
* If the default approximate provided by this method is insufficient, use hausdorffDistanceDensify() instead.
Expand Down Expand Up @@ -1594,13 +1593,9 @@ class CORE_EXPORT QgsGeometry
* This method will do anything possible to force the current geometry into the specified type. E.g.
*
* - lines or polygons will be converted to points by return either a single multipoint geometry or multiple
*
* single point geometries.
*
* single point geometries.
* - polygons will be converted to lines by extracting their exterior and interior rings, returning
*
* either a multilinestring or multiple single line strings as dictated by \a type.
*
* either a multilinestring or multiple single line strings as dictated by \a type.
* - lines will be converted to polygon rings if \a type is a polygon type
* - curved geometries will be segmented if \a type is non-curved.
* - multi geometries will be converted to a list of single geometries
Expand Down Expand Up @@ -2272,9 +2267,8 @@ class CORE_EXPORT QgsGeometry
* points are equal within the specified tolerance
* - multipolygons and have the same number of polygons, the polygons have the same number
* of rings, and each ring has the same number of points and all points are equal
* within the specified
* within the specified tolerance
*
* tolerance
* \since QGIS 2.9
*/
static bool compare( PyObject *obj1, PyObject *obj2, double epsilon = 4 * std::numeric_limits<double>::epsilon() );
Expand Down
3 changes: 1 addition & 2 deletions src/core/geometry/qgsgeos.h
Expand Up @@ -179,8 +179,7 @@ class CORE_EXPORT QgsGeos: public QgsGeometryEngine
* subset of useful cases. Examples of these are:
*
* - computing distance between Linestrings that are roughly parallel to each other,
*
* and roughly equal in length. This occurs in matching linear networks.
* and roughly equal in length. This occurs in matching linear networks.
* - Testing similarity of geometries.
*
* If the default approximate provided by this method is insufficient, use hausdorffDistanceDensify() instead.
Expand Down
4 changes: 2 additions & 2 deletions src/core/qgsdistancearea.h
Expand Up @@ -293,9 +293,9 @@ class CORE_EXPORT QgsDistanceArea
*
* - spheroid_project.spheroid_project(...)
* - Valid bounds checking for degrees (latitude=+- 85.05115) is based values used for
* -> 'WGS84 Web Mercator (Auxiliary Sphere)' calculations
* --> latitudes outside these bounds cause the calculations to become unstable and can return invalid results
*
* -> 'WGS84 Web Mercator (Auxiliary Sphere)' calculations
* --> latitudes outside these bounds cause the calculations to become unstable and can return invalid results
* \since QGIS 3.0
*/
QgsPointXY computeSpheroidProject( const QgsPointXY &p1, double distance = 1, double azimuth = M_PI_2 ) const;
Expand Down
8 changes: 2 additions & 6 deletions src/gui/qgsdockwidget.h
Expand Up @@ -84,13 +84,9 @@ class GUI_EXPORT QgsDockWidget : public QDockWidget
* When setting as hidden, the following logic is used:
*
* - hiding a dock which is open but not raised (ie hidden by another tab) will have no
*
* effect, and the dock will still be opened and hidden by the other tab
*
* effect, and the dock will still be opened and hidden by the other tab
* - hiding a dock which is open and raised (ie, user visible) will cause the dock to
*
* be closed
*
* be closed
* - hiding a dock which is closed has no effect and raises no signals
*
* \see isUserVisible()
Expand Down

0 comments on commit 481ece3

Please sign in to comment.