File tree Expand file tree Collapse file tree 2 files changed +10
-11
lines changed
Expand file tree Collapse file tree 2 files changed +10
-11
lines changed Original file line number Diff line number Diff line change 11[project ]
22name = " cwapi3d"
3- version = " 32.443.0 "
3+ version = " 32.443.1 "
44authors = [{ name = " Cadwork" , email = " it@cadwork.ca" }]
55requires-python = " >= 3.12"
66description = ' Python bindings for CwAPI3D'
Original file line number Diff line number Diff line change 1- from cadwork import point_3d
1+ from cadwork import vertex_list
2+
23
34class polygon_list :
4-
5+
56 def count (self ) -> int :
6- """count
7+ """Returns the number of polygons in the list.
78
8- Returns:
9- int
9+ Returns: int
1010 """
1111
12- def at (self , index : int ) -> point_3d :
13- """at
12+ def at (self , index : int ) -> vertex_list :
13+ """Returns the polygon vertices at the given index.
1414
1515 Parameters:
16- index: index
16+ index: The zero-based polygon index.
1717
1818 Returns:
19- point_3d
19+ vertex_list: The ordered vertices defining the polygon.
2020 """
21-
You can’t perform that action at this time.
0 commit comments