Skip to content

Commit 64f6e08

Browse files
author
ring630
committed
Merge remote-tracking branch 'origin/extend_trace' into extend_trace
2 parents 757cfd0 + 3d28319 commit 64f6e08

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

pyaedt/edb_core/dotnet/database.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,11 +100,14 @@ def add_point(self, x, y, incremental=False):
100100
y: str, in, float
101101
Y coordinate.
102102
incremental: bool
103-
Add point incrementally. If True, coordinates of the added point is incremental to the last point.
104-
The default value is ``False``.
103+
Whether to add the point incrementally. The default value is ``False``. When
104+
``True``, the coordinates of the added point are incremental to the last point.
105+
106+
105107
Returns
106108
-------
107109
bool
110+
``True`` when successful, ``False`` when failed.
108111
"""
109112
if incremental:
110113
x = self._pedb.edb_value(x)

0 commit comments

Comments
 (0)