marko_ribar Posted October 2, 2022 Posted October 2, 2022 Just to appoint to the issue... https://www.theswamp.org/index.php?topic=57849.msg611581#msg611581 Regards, M.R. Quote
marko_ribar Posted November 11, 2023 Author Posted November 11, 2023 Solved it with this workaround : (defun _vlax-curve-getpointatdist ( curve dist ) (cond ( (= dist 0.0) (vlax-curve-getpointatdist curve dist) ) ( (and (/= dist 0.0) (= (vlax-curve-getparamatdist curve dist) 0.0)) nil ) ( t (vlax-curve-getpointatdist curve dist) ) ) ) HTH. M.R. 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.