Ish Posted July 17, 2021 Posted July 17, 2021 Dear team, I need a lisp program or tips tricks to draw a close polyline within PRoW for land acquisition plan and area for Road project. I want all at one click command. Currently I am using boundary command but is one by one clicking. Hatch for reference, need a close polyline. See attached image And cad file. LAP-CLOSE PL.dwg Quote
confutatis Posted July 17, 2021 Posted July 17, 2021 (edited) It doesn't seem to me that the bpoly command wastes that much time.... Edited July 17, 2021 by confutatis 1 Quote
BIGAL Posted July 17, 2021 Posted July 17, 2021 A starting point (defun c:hatchang ( / ang pt) (setq ang 0.0) (while (setq pt (getpoint "\nPick point Enter to exit")) (command "-hatch" "P" "ansi31" 1 ang pt "") (setq ang (+ ang 30)) ) (princ) ) 1 Quote
Ish Posted July 18, 2021 Author Posted July 18, 2021 9 hours ago, confutatis said: It doesn't seem to me that the bpoly command wastes that much time.... Sir, Project length 80km Too much land acquisition required. I just upload small part of project. Quote
Ish Posted July 18, 2021 Author Posted July 18, 2021 3 hours ago, BIGAL said: A starting point (defun c:hatchang ( / ang pt) (setq ang 0.0) (while (setq pt (getpoint "\nPick point Enter to exit")) (command "-hatch" "P" "ansi31" 1 ang pt "") (setq ang (+ ang 30)) ) (princ) ) @BIGAL hatch is not required, sir Hatching is Just for reference. I need only a close polyline (like by boundary command) Too much land acquisition required. I just upload small part of project. Thanks Quote
Ish Posted July 18, 2021 Author Posted July 18, 2021 (edited) 6 hours ago, BIGAL said: A starting point (defun c:hatchang ( / ang pt) (setq ang 0.0) (while (setq pt (getpoint "\nPick point Enter to exit")) (command "-hatch" "P" "ansi31" 1 ang pt "") (setq ang (+ ang 30)) ) (princ) ) Thanks Edited July 18, 2021 by Ish Answer got Quote
Ish Posted July 19, 2021 Author Posted July 19, 2021 Any trick or shortcut at least done 80% Remaining 20 I will do by boundary command. Quote
Jonathan Handojo Posted November 15, 2021 Posted November 15, 2021 Hurts when nobody's willing to help you out. I recommend this, but it's not free: SuperBoundary The program itself is amazing, I wish I could do that. 1 Quote
BIGAL Posted November 15, 2021 Posted November 15, 2021 Jonathon look at the number under Community Members yours is 160 Ish is -ve19 look into the meaning of that, then "Hurts when nobody's willing to help you out" you may change your mind. 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.