Visual LISP, AutoLISP and General Customization
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

DXFout customization

1 REPLY 1
Reply
Message 1 of 2
dndee
232 Views, 1 Reply

DXFout customization

I need to save only the basic dxf geometry information, not all the extra information that is saved with the file. Can this output be modified?
If I dxf out a circle, I need only to have a few lines of code that describe the circle, not hundreds of lines of extra code.

Thanks.
1 REPLY 1
Message 2 of 2
Anonymous
in reply to: dndee

No, but you can write your own file.

(defun mf ( / )
(setq file (open "cicle.txt" "w"))
(princ (strcat "circle info\n") file)
.
.
.
.
(close file)
)

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Forma Design Contest


Autodesk Design & Make Report