Jump to content

Crossing Angle


bittu

Recommended Posts

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 by BIGAL
  • Like 1
Link to comment
Share on other sites

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 

Link to comment
Share on other sites

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...