Elektryk Posted February 25, 2010 Posted February 25, 2010 i'm just trying to make my life a little easier.... what would be the code for lisp i got like 30 polylines lined up from left to the right and what would be the code to separate them by 10" ? i mean the code MOVE i would want to use it should be doing this- i know its easy but i cant get it to work..... run it..... asks you witch objects to move, select them and it moves the to the right by 10"....... thx Quote
rkmcswain Posted February 25, 2010 Posted February 25, 2010 run it..... asks you witch objects to move, select them and it moves the to the right by 10"....... Try this. (vl-cmdf "._move" (ssget) "" "" (list 10.0 0.0 0.0)) ;; if you are working in feet then use this (vl-cmdf "._move" (ssget) "" "" (list (/ 10.0 12.0) 0.0 0.0)) 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.