mostafa_mashhadi Posted August 26 Posted August 26 Change the point style with AutoCAD Autolisp Quote
Steven P Posted August 26 Posted August 26 Change the variable pdmode - there are description of what they are all, PDsize for point size... and of course, with any variable change set it back again after you are done with the LISP as required 1 1 Quote
Steven P Posted August 27 Posted August 27 Here is a snippet that you could add to a LISP (setq PDMode_Old (getvar 'pdmode)) ;;Record the existing point mode (style) (setq 'pdmode 2) ;;Set the point to something new ;; Do stuff ;; (setq 'pdmode PDMode_Old) ;;reset the variable, pdmode back to as it was before the LISP The pmode value isn't a straight 0, 1, 2, 3, 4... list you have 0 - 4 for the point then add 32 to add a circle round it, 64 to add a box and 96 to add a box and circle. See here: https://help.autodesk.com/view/ACADWEB/ENU/?guid=AutoCAD_Web_Help_List_Commands_Pdmode_sysvar_html 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.