samifox Posted July 31, 2014 Posted July 31, 2014 Hi Just wonder... Let's say... Ent make circle After 1 second Set it's center coordinate 10 units to the right After 1 second set color to red Loop 10 times Is it possible to animate using autolisp? Thanks S Quote
MSasu Posted July 31, 2014 Posted July 31, 2014 For sure is possible, please check this previous thread for solutions. Quote
BIGAL Posted August 1, 2014 Posted August 1, 2014 (edited) an example (defun aaa () (setvar "osmode" 0) (setq pt1 (list 0.0 0.0)) (setq pt2 (list 0.0 0.1)) (command "Circle" pt1 2) (Command "zoom" "C" pt1 50) (repeat 100 (command "move" "L" "" pt1 pt2) (command "delay" 10) ) (command "regen") ) ; to run type (aaa) Edited August 1, 2014 by BIGAL Quote
steven-g Posted August 1, 2014 Posted August 1, 2014 It's got to be possible I use scripts and put things on there own layer to make selection easier, so Lisp should be a doddle Quote
Recommended Posts
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.