p7q Posted Friday at 01:21 PM Posted Friday at 01:21 PM Why dont use command flatten in lisp. (setq ss (ssget)) (if ss (progn (setq count (sslength ss)) (setq i 0) (while (< i count) (setq obj (ssname ss i)) (command "_FLATTEN" obj "" " ") (setq i (+ i 1)) ) ) ) when ı use this command ı see error ; Unknown command "FLATTEN". Quote
Tharwat Posted Friday at 02:49 PM Posted Friday at 02:49 PM It's AutoLISP custom program whilst you might call it this way. (C:flatten) Quote
SLW210 Posted Saturday at 12:39 PM Posted Saturday at 12:39 PM You may also need (acet-load-expresstools) Needed on some Express Tools to use in LISP. 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.