Trudy Posted April 5, 2021 Posted April 5, 2021 Hello i need help i want to create lines where cover the first polyline where cross the grid polygon. I upload file for better understand. Thank you Tr1.dwg Quote
Tharwat Posted April 5, 2021 Posted April 5, 2021 This should be the missing part you need to finish the goal of your program and I am sure that you do the rest part for lines. ;; where variables: ;; ;; obj = Green Polyline. ;; ;; lst = list of intersected points. ;; ;; srt = sorted points to use to create lines in order. ;; (foreach pt lst (setq pts (cons (vlax-curve-getdistatpoint obj (vlax-curve-getclosestpointto obj pt)) pts)) ) (setq srt (vl-sort pts '(lambda (j k) (< j k)))) 1 Quote
Trudy Posted April 6, 2021 Author Posted April 6, 2021 Hello, @Tharwat I add this just now and work perfect. Thank you very much 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.