bittu Posted December 9, 2019 Posted December 9, 2019 All masters. I want the angle at every intersection points of polyline please find the sample drawing CROSSING ANGLE.dwg Quote
BIGAL Posted December 9, 2019 Posted December 9, 2019 (edited) The request is made up of 3 parts. Dimension the angle Get the chainage of the intersection point, hint vlax-curve-getdistatpoint. Add to a table. All of the above have been done if you google you should find. a sample bit of code to add a row to a table (setq rownum (vla-get-rows obj2)) (vla-InsertRows obj2 rownum (vla-GetRowHeight obj2 (- rownum 1)) 1) (vla-settext obj2 rownum 0 txt1) (vla-settext obj2 rownum 1 txt2) (vla-settext obj2 rownum 2 txt3) make-example-table.lsp Edited December 9, 2019 by BIGAL 1 Quote
Emmanuel Delay Posted December 10, 2019 Posted December 10, 2019 I don't know, I can't find a entmakex DIMANGULAR Quote
BIGAL Posted December 10, 2019 Posted December 10, 2019 This has been answered elsewhere check Forums/Autodesk. Quote
bittu Posted December 11, 2019 Author Posted December 11, 2019 On 12/10/2019 at 5:15 AM, BIGAL said: The request is made up of 3 parts. Dimension the angle Get the chainage of the intersection point, hint vlax-curve-getdistatpoint. Add to a table. All of the above have been done if you google you should find. a sample bit of code to add a row to a table (setq rownum (vla-get-rows obj2)) (vla-InsertRows obj2 rownum (vla-GetRowHeight obj2 (- rownum 1)) 1) (vla-settext obj2 rownum 0 txt1) (vla-settext obj2 rownum 1 txt2) (vla-settext obj2 rownum 2 txt3) make-example-table.lsp 769 B · 3 downloads Thanks Sir for guiding i got above points answer 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.