rcstha Posted January 12, 2024 Posted January 12, 2024 wants to fillet many polylines with same radius as attached sample below. thanks. Quote
BIGAL Posted January 13, 2024 Posted January 13, 2024 How much do you know about lisp, like make a selection set of plines, set filletrad, loop through selection doing the fillet, hey that was the program steps. Quote
rcstha Posted January 15, 2024 Author Posted January 15, 2024 Thanks for your concern. To be honest i don't know about lisp code yet. i am using some lisps which were written by others only. Quote
rcstha Posted January 16, 2024 Author Posted January 16, 2024 i have attached a simple sample of five polylines which i have to fillet in a vertex with some radius. i am doing it manually for many lines. Thank you. sample.dwg Quote
BIGAL Posted January 16, 2024 Posted January 16, 2024 The problem is how do you work out which segments to not fillet. if its always say a Z shape then can say do fillet 2nd & 3rd segment. Need more examples in your dwg. Quote
rcstha Posted January 16, 2024 Author Posted January 16, 2024 Thank you for the reply. actually my working drawings have many polyline segments and i want to fillet at all or at some vertices according to the necessity. so it would be better if i get a lisp code with choosing option. Quote
rcstha Posted January 18, 2024 Author Posted January 18, 2024 i got a lisp code which help me 80% but not 100% because it fillet in all vertices not in specific vertex of polylines. the code is as below. (defun C:FMP ; = Fillet Multiple Polylines (/ plss n) (if (setq plss (ssget "_:L" '((0 . "LWPOLYLINE")))) (repeat (setq n (sslength plss)) (command "_.fillet" "_polyline" (ssname plss (setq n (1- n)))) ); repeat ); if (princ) ); defun Quote
BIGAL Posted January 18, 2024 Posted January 18, 2024 (edited) You have a contradiction, you want fillet multiple plines, but only some part of the plines, so how do you choose which parts to fillet ? Do you have a rule about which segments to use ? Edited January 18, 2024 by BIGAL Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.