Skip to content

Commit ab9e2fc

Browse files
committed
Fix multiline docstring
1 parent d1a9d3f commit ab9e2fc

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

python/core/qgscadutils.sip

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,9 @@ Constraint for soft lock to a common angle
7575

7676
QList<QgsPointXY> cadPointList;
7777
%Docstring
78-
point (index 2) for alignment purposes.
78+
List of recent CAD points in map coordinates. These are used to turn relative constraints to absolute.
79+
First point is the most recent point. Currently using only "previous" point (index 1) and "penultimate"
80+
point (index 2) for alignment purposes.
7981
%End
8082

8183
};

src/core/qgscadutils.h

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,11 @@ class CORE_EXPORT QgsCadUtils
6969
//! Constraint for soft lock to a common angle
7070
QgsCadUtils::AlignMapPointConstraint commonAngleConstraint;
7171

72-
//! List of recent CAD points in map coordinates. These are used to turn relative constraints to absolute.
73-
//! First point is the most recent point. Currently using only "previous" point (index 1) and "penultimate"
74-
//! point (index 2) for alignment purposes.
72+
/**
73+
* List of recent CAD points in map coordinates. These are used to turn relative constraints to absolute.
74+
* First point is the most recent point. Currently using only "previous" point (index 1) and "penultimate"
75+
* point (index 2) for alignment purposes.
76+
*/
7577
QList<QgsPointXY> cadPointList;
7678

7779
/**

0 commit comments

Comments
 (0)