vnanhvu Posted June 7, 2011 Posted June 7, 2011 i have a lisp convert spline to revision cloud. but i want convert with any length ( ex.1000mm...or etc with min arc length = max arc length ). can you help me ? (defun c:51() (command "revcloud" "A" 200 500 "") (princ)) Thanks all. Quote
Tharwat Posted June 7, 2011 Posted June 7, 2011 (defun c:Test (/ ss) (if (setq ss (ssget "_:L" '((0 . "SPLINE"))) ) ( (lambda (i / sset) (while (setq sset (ssname ss (setq i (1+ i) ) ) ) (command "_.revcloud" "_A" 200. 500. "" sset "") ) ) -1 ) (princ) ) (princ) ) Tharwat 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.