Recommended Posts

Posted

Aby nie wystraszyć powiem ze to tylko kilka linijek tekstu:

(defun c:dp ()
(vl-load-com)
(if (and (progn (prompt "\n Select Polyline :")
           (setq e (ssget "_+.:s" '((0 . "*POLYLINE"))))
         )
         (setq p (getpoint "\n Specify point on the previous selected polyline :"))
    )
  (print (vlax-curve-getdistatpoint (ssname e 0) (vlax-curve-getclosestpointto (ssname e 0) p)))
)
(print)
);KONIEC

Posted

A czy mógłbym poprosić jeszcze o wyjaśnienie co oznaczają te +.:s

Zgaduje że chodzi o wersje ZWCADA z plusem i bez...

W opisach funkcji ssget nie mogę nic znaleźć o tych znaczkach.

Dziękuję 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now