Skip to content

Commit

Permalink
Fix multiline docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Oct 4, 2017
1 parent d1a9d3f commit ab9e2fc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 3 additions & 1 deletion python/core/qgscadutils.sip
Expand Up @@ -75,7 +75,9 @@ Constraint for soft lock to a common angle

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

};
Expand Down
8 changes: 5 additions & 3 deletions src/core/qgscadutils.h
Expand Up @@ -69,9 +69,11 @@ class CORE_EXPORT QgsCadUtils
//! Constraint for soft lock to a common angle
QgsCadUtils::AlignMapPointConstraint commonAngleConstraint;

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

/**
Expand Down

1 comment on commit ab9e2fc

@nyalldawson
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See #5300

Please sign in to comment.