akgbmb Posted January 4, 2017 Posted January 4, 2017 hi i m looking lisp for elbow. consider 100mm inner Elbow radius lisp need to following manner Command: Elbow Select Inner 1st line: Select Outer 1st line: Select Inner 2nd line: Select Outer 2nd line: refer attachment Quote
tzframpton Posted January 4, 2017 Posted January 4, 2017 Here: http://www.cadtutor.net/forum/showthread.php?30545-*FREE*-HVAC-or-Piping-program-for-AutoCAD Which leads to the updated program here: http://www.cadtutor.net/forum/showthread.php?10882-Need-better-multiline&p=670389&viewfull=1#post670389 Set up defaults by utilizing the Tool Palettes to preset the options for short/long radius, gored elbows, miter throat lengths, etc. -TZ Quote
akgbmb Posted January 5, 2017 Author Posted January 5, 2017 hi TZ Sir, your 2nd lisp (WPIPE) is worthfull & its suitable for newly prepare duct drawing..... but for editing purpose its not suitable. usually i am using following command >fillet with 100 radius (inner side) >offset inner side arc to outer arch >line & trim command.... so i need make elbow essly...... if possible pls arrange Quote
BIGAL Posted January 6, 2017 Posted January 6, 2017 There will be a duct lsp that does what you want to write one from scratch is not required, TZframpton has offreed a couple of suggestions, if you google you will find plenty more DUCT.lsp programs. I I was doing it which I am not then it would be a pick 2 lines and enter width its not that hard, fairly basic lisp. ; an example of fillet 2 lines (setq obj1 (entsel "Pick 1st line")) (setq obj2 (entsel "pick 2nd line")) (setvar "Filletrad" (getreal "enter radius")) (command "fillet" obj1 obj2) ; your go here ; enter width do offset obj1 obj2 and redo fillet 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.