TheSwamp

Code Red => AutoLISP (Vanilla / Visual) => Topic started by: STEVEDALLAS on April 12, 2007, 09:06:53 AM

Title: I want to convert script to lisp
Post by: STEVEDALLAS on April 12, 2007, 09:06:53 AM
Does anyone know how to convert script to lisp routines? Normally I would use the "brute-force" method and hand convert all these scripts. It would be good to find software or a routine that does it quickly. Maybe not even batch conversion (all at once). One at a time would be alright.
I really do not want to use the "brute-force" method.
Title: Re: I want to convert script to lisp
Post by: Tramber on April 12, 2007, 09:39:39 AM
Does not exist !

Unless you replace :

circle 0,0 10
by
(command "circle" "0,0" "10")

...not very usefull !
Title: Re: I want to convert script to lisp
Post by: FengK on April 13, 2007, 02:43:20 AM
barely used any scripts myself, but if you don't mind posting a couple of them, i'll see if i can figure something out.