Jump to content

Merge the drawings


andy_lee

Recommended Posts

There is something wrong with your file 221.idw.dwg , you "audit" it (Files > Drawing Utilities > Audit) and will be fine.

About the sorting, change the defun sort to this:

(defun sort(l)
   (mapcar 'cadr (vl-sort
     (mapcar '(lambda(x) (list (atoi (vl-list->string (vl-remove-if-not '(lambda(y) (<= 48 y 57))  (vl-string->list x)))) x)) l)
 '(lambda(m n) (< (car m) (car n)))))
 )

And what you want to set spacing for? we don't know the dimension of inserted file frame, we can only put them side by side.

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...