asdfgh Posted May 7, 2023 Posted May 7, 2023 (edited) Hello, Does anyone have lisp that could measure dimension linear at intersections between upper point of the line and intersection of the line with the yellow lines, the yellow lines could be lines, polylines or arcs. Find the following picture as reference. I need to select the white line, then select the yellow ones and the dimensions to be drawn. new block.dwg Thanks in advance Edited May 7, 2023 by asdfgh Quote
Steven P Posted May 7, 2023 Posted May 7, 2023 Just wondering how this a LISP will be much quicker than Dimlinear unless you have a lot of points to dimension to the end of the line How are you with creating a LISP by the way? Might do something like: (command "dimlinear" (setq Pt1 (getpoint "Select point")) (setq Pt2 (getpoint "Select point on reference Line")) pt1 ) - start a loop (command "dimlinear" (setq Pt1 (getpoint "Select point")) pt2 pt1) end loop Job done. However it is Sudnay here, the weekend so you might have to wait to get a better answer and check that these suggestions work Quote
marko_ribar Posted May 7, 2023 Posted May 7, 2023 QDIM will dimension each one dimension between each intersection... If you want quick answer that's what I'd do - additions with measurements is no problem with me - I am satisfied with QDIM very much if I have to do it quickly... 1 Quote
Tharwat Posted May 8, 2023 Posted May 8, 2023 Create the first dimension then use the command DIMBASELINE to continue from base point. 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.