Re: Where is ACIS-REGION.LSP
what did you need to accomplish that you cannot derive from the common dxf codes?
each of the 1 codes in a solid entity data list represents a line in the sat file.
if you are familiar with the sat file, then you can use this to extract the sat file from the entity data. it itemizes the string so you can index into it.
(defun acis_translate(string / item letter lst)
(setq string(strcat string" ")item"")
(while(>(strlen string)0)
(setq letter(substr string 1 1)string(substr string 2))
(if(=" "letter)
(setq lst(append lst(list item))item"")
(setq item(strcat item(chr(boole 6(ascii letter)95))))
)
)
lst
)