Full Version: ArcCAM
Show messages:
1-18
19-38
39-58
59-78
79-81
From: Michael Gibson
Hi Len, on a cube there would be 12 individual line curves. There isn't any curve object that would have 4 line segments in it but you can get a list of the 4 lines for a face by face.getLoops();
face.getLoops() returns a list of trimming boundaries. The first loop is the outer boundary of the face. The 2nd and further loops are holes.
Each loop is an object list of edges.
So for the face of a cube when you call face.getLoops() there will be one loop, and that loop will be an object list with 4 edge curves in it.
- Michael
From: probotix
Awesome, thats exactly what I need! Also, having a list of the holes will simplify a ton.
>Len
From: DanC
As someone who mainly models in MoI, for CNC machining (and 3D printing) and has to export/import into Fusion360 (my god do I hate modelling in Fusion...) to use its CAM; this is a very interesting topic for me. Good luck with it. I'll be following along
Show messages:
1-18
19-38
39-58
59-78
79-81