- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello all,
I'm working on a routine to assist in calculating frontage increase for building area.
At this point there is a lot of clicking/picking involved with getting the input data from the user
;;pick wall face points
(setq P1 (getpoint "\nPick 1st end of wall: "))
(setq P2 (getpoint "\nPick 2nd end of wall: "))
(setq F (distance P1 P2))
;;pick yard points
(setq Y1 (getpoint "\nPick building corner: "))
(setvar "osmode" 640)
(setq Y2 (getpoint Y1 "\nPick perpendicular property line or center of public way: "))
(setvar "osmode" 1)
(setq Y3 (getpoint "\nPick building corner: "))
(setvar "osmode" 640)
(setq Y4 (getpoint Y3 "\nPick perpendicular property line or center of public way: "))
(setq DIST1 (distance Y1 Y2))
(setq DIST2 (distance Y3 Y4))
I'm looking to simplify the selection process. I'm hoping somebody has already done something similar.
I have provided an image of what I'm hoping to achieve
Solved! Go to Solution.