We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ec5e7d commit e6008fdCopy full SHA for e6008fd
1 file changed
src/cadwork/polygon_list.pyi
@@ -4,17 +4,17 @@ from cadwork import vertex_list
4
class polygon_list:
5
6
def count(self) -> int:
7
- """count
+ """Returns the number of polygons in the list.
8
9
Returns: int
10
"""
11
12
def at(self, index: int) -> vertex_list:
13
- """at
+ """Returns the polygon vertices at the given index.
14
15
Parameters:
16
- index: index
+ index: The zero-based polygon index.
17
18
Returns:
19
- vertex_list: vertex_list
+ vertex_list: The ordered vertices defining the polygon.
20
0 commit comments