Skip to content

Commit 13802c8

Browse files
committed
## src
- remove redundant import ## docs - add example to run plugin from cmd
1 parent ad294f0 commit 13802c8

3 files changed

Lines changed: 9 additions & 4 deletions

File tree

docs/get_started.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,15 @@ for element_id in element_ids:
163163
print(subgroup) # print the subgroup names
164164
```
165165

166+
### run plugin from console
167+
168+
You can also run the plugin from the console.
169+
Flag ```/PLUGIN=``` is used to start the plugin.
170+
171+
```cmd
172+
...\cadwork.dir\ci_start.exe "C:\...\myFile.3d" /PLUGIN=test
173+
```
174+
166175
## Use your prefered IDE (advanced user)
167176

168177
Of course, you can also use any other Python IDE.

src/element_controller/__init__.pyi

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1808,8 +1808,6 @@ def remove_standard_connector_axis(a0: str) -> None:
18081808
None
18091809
"""
18101810

1811-
from typing import List
1812-
18131811
def remove_standard_beam(guid: str) -> None:
18141812
"""remove standard beam
18151813

src/geometry_controller/__init__.pyi

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -834,8 +834,6 @@ def are_facets_coplanar(first_facet: List[point_3d], second_facet: List[point_3d
834834
facet coplanarity
835835
"""
836836

837-
from typing import List
838-
839837
def get_round_machine_rough_part_negative_width(element_id: int) -> bool:
840838
"""get round machine rough part negative width
841839

0 commit comments

Comments
 (0)