@@ -157,7 +157,7 @@ the closest point to the initial ``intersection`` point is returned.
157
157
158
158
static int circleCircleIntersections( QgsPointXY center1, double radius1,
159
159
QgsPointXY center2, double radius2,
160
- QgsPointXY &intersection1, QgsPointXY &intersection2 );
160
+ QgsPointXY &intersection1 /Out/ , QgsPointXY &intersection2 /Out/ );
161
161
%Docstring
162
162
Calculates the intersections points between the circle with center ``center1`` and
163
163
radius ``radius1`` and the circle with center ``center2`` and radius ``radius2``.
@@ -170,7 +170,7 @@ If found, the intersection points will be stored in ``intersection1`` and ``inte
170
170
%End
171
171
172
172
static bool tangentPointAndCircle( const QgsPointXY ¢er, double radius,
173
- const QgsPointXY &p, QgsPointXY &pt1, QgsPointXY &pt2 );
173
+ const QgsPointXY &p, QgsPointXY &pt1 /Out/ , QgsPointXY &pt2 /Out/ );
174
174
%Docstring
175
175
Calculates the tangent points between the circle with the specified ``center`` and ``radius``
176
176
and the point ``p``.
@@ -182,8 +182,8 @@ If found, the tangent points will be stored in ``pt1`` and ``pt2``.
182
182
183
183
static int circleCircleOuterTangents(
184
184
const QgsPointXY ¢er1, double radius1, const QgsPointXY ¢er2, double radius2,
185
- QgsPointXY &line1P1, QgsPointXY &line1P2,
186
- QgsPointXY &line2P1, QgsPointXY &line2P2 );
185
+ QgsPointXY &line1P1 /Out/ , QgsPointXY &line1P2 /Out/ ,
186
+ QgsPointXY &line2P1 /Out/ , QgsPointXY &line2P2 /Out/ );
187
187
%Docstring
188
188
Calculates the outer tangent points for two circles, centered at ``center1`` and
189
189
``center2`` and with radii of ``radius1`` and ``radius2`` respectively.
0 commit comments