Manually fix some multiline indented lists

This commit is contained in:
Nyall Dawson 2020-06-11 09:50:45 +10:00
parent f1dbf4ccaf
commit 481ece3da3
4 changed files with 9 additions and 20 deletions

View File

@ -588,8 +588,7 @@ class CORE_EXPORT QgsGeometry
* subset of useful cases. Examples of these are: * subset of useful cases. Examples of these are:
* *
* - computing distance between Linestrings that are roughly parallel to each other, * - 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. * - Testing similarity of geometries.
* *
* If the default approximate provided by this method is insufficient, use hausdorffDistanceDensify() instead. * If the default approximate provided by this method is insufficient, use hausdorffDistanceDensify() instead.
@ -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. * 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 * - 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 * - 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 * - 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. * - curved geometries will be segmented if \a type is non-curved.
* - multi geometries will be converted to a list of single geometries * - multi geometries will be converted to a list of single geometries
@ -2272,9 +2267,8 @@ class CORE_EXPORT QgsGeometry
* points are equal within the specified tolerance * points are equal within the specified tolerance
* - multipolygons and have the same number of polygons, the polygons have the same number * - 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 * 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 * \since QGIS 2.9
*/ */
static bool compare( PyObject *obj1, PyObject *obj2, double epsilon = 4 * std::numeric_limits<double>::epsilon() ); static bool compare( PyObject *obj1, PyObject *obj2, double epsilon = 4 * std::numeric_limits<double>::epsilon() );

View File

@ -179,8 +179,7 @@ class CORE_EXPORT QgsGeos: public QgsGeometryEngine
* subset of useful cases. Examples of these are: * subset of useful cases. Examples of these are:
* *
* - computing distance between Linestrings that are roughly parallel to each other, * - 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. * - Testing similarity of geometries.
* *
* If the default approximate provided by this method is insufficient, use hausdorffDistanceDensify() instead. * If the default approximate provided by this method is insufficient, use hausdorffDistanceDensify() instead.

View File

@ -293,9 +293,9 @@ class CORE_EXPORT QgsDistanceArea
* *
* - spheroid_project.spheroid_project(...) * - spheroid_project.spheroid_project(...)
* - Valid bounds checking for degrees (latitude=+- 85.05115) is based values used for * - 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 * \since QGIS 3.0
*/ */
QgsPointXY computeSpheroidProject( const QgsPointXY &p1, double distance = 1, double azimuth = M_PI_2 ) const; QgsPointXY computeSpheroidProject( const QgsPointXY &p1, double distance = 1, double azimuth = M_PI_2 ) const;

View File

@ -84,13 +84,9 @@ class GUI_EXPORT QgsDockWidget : public QDockWidget
* When setting as hidden, the following logic is used: * 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 * - 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 * - 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 * - hiding a dock which is closed has no effect and raises no signals
* *
* \see isUserVisible() * \see isUserVisible()