Dayananda Posted November 21, 2020 Posted November 21, 2020 (edited) I have a selection set added by Crossing. Now I need re arrange this list as mirror order of selection. Edited November 21, 2020 by Dayananda Quote
BIGAL Posted November 21, 2020 Posted November 21, 2020 You process the selection set last to first last to first (repeat (setq x (sslength lst)) (setq ent (ssname lst (setq x (- x 1)))) do your thing .... ) first to last (setq x 0) (repeat (sslength lst) (setq ent (ssname lst x)) do your thing ..... (setq x (+ x 1)) ) 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.