Message 1 of 3

Not applicable
06-21-2020
11:20 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I am trying to use AutoLisp to automatically fillet *some* of the edges of a 3D solid, which I would like to choose programmatically (no user selection). I need to do some complex/extensive selection so I cannot do that "by hand".
To fix ideas, let's say i want to simply fillet the edges of the top face in a cube. I can create the cube, access the cube entity and look inside its (misterious) association list, but I cannot find any way to select its edges and to feed the selection to a call to the command FILLETEDGE.
Is that even possible?!
(command "box" "0,0,0" "1,1,1")
(setq aslist (entget (entlast)))
(command "filletedge" "r" 0.1 [...list of edges?!?!]); <= any idea?
Solved! Go to Solution.