acadr13c1 3dsout, dxf3ds
15-Feb-95 21:35:00
Sb: acadr13c1 3dsout, dxf3ds
Fm: Joe Miller 70544,2436
To: Phillip L. Miller 74710,3061
Phillip, It seems I've asked this question at least three times before and
received the same wrong answer each time, but I'll try it again. How do I get
AutoCAD Release 13 (c1, not that it matters) non-ACIS objects into 3D Studio
(r4c1)? 3DSOUT doesn't touch non-ACIS objects and the version of DXF3DS I see
on the forum doesn't touch Release 13 .DXF files (unknown gcode = 100 Bad
file:). The version of DXF3DS I downloaded from this forum a few weeks ago is
named DXF3DSI.EXE (288,028 bytes, 12-31-91 4:51p). Is this the latest version?
If it's not, what's the name of the correct version?
Also, while I've got your attention, what's wrong with this LISP code that
would generate an "incorrect number of arguments to a function" if C:3DSOUT has
not been init'd for this session? If I enter "(C:3DSOUT)" at the command
prompt, then cancel after 3DSOUT inits, then re-run the LISP, it runs fine. Is
it me or 3DSOUT?
0
(defun C:-3DSOUT ( / ss2 $f n)
(setq
n (getvar "CLAYER")
ss2 (ssget "X" (list (cons '8 n) (cons '0 "3DSOLID")))
$f (strcat n ".3ds")
);setq
(c:3dsout ss2 0 0 15 0.1 $f) );defun c:-3dsout
I'm also posting this LISP question on the ACAD forum, so if this isn't
something you want to deal with, just let me know.
Thanks, Joe Miller