dangkha Posted September 30, 2016 Posted September 30, 2016 Dear All, I'm looking for the guide to make solid objects from some bounded areas by using Presspull command. Please give me some advices! Many thanks, Quote
BIGAL Posted October 1, 2016 Posted October 1, 2016 You may have to go back to 1st principles of solid modelling using extrude and subtract etc. Presspull does not seem to allow any command line version. Some one else may know how. ; two circles makes a tube (command "circle" (list 0 0) 100) (setq obj (entlast)) (command "extrude" obj "" 100) (setq obj (entlast)) (command "circle" (list 0 0) 90) (setq obj2 (entlast)) (command "extrude" obj2 "" 100) (setq obj2 (entlast)) (command "subtract" obj "" obj2 "") 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.