athanatos
Guest
Good morning, everyone!
I open this topic to ask for information on several network lisp that should allow to recreate the contours of more retinals.
one of the many is this
;handy autocad-12 hatch edit 06/08/2009
;author: alex borodulin
;nyacad, inc. http://www.nyacad.com
(defun c:has(/ gp) (setq gp (ssget))(command "-hatchedit" gp "as" pause));convert hatch to associative
(defun c:hbo(/ gp) (setq gp (ssget))(command "-hatchedit" gp "b" "p" "y"));add boundary to hatch
(defun c:hf(/ gp) (setq gp (ssget))(command "-hatchedit" gp "o" "s" pause "n"));hatch fix
(defun c:hs(/ gp) (setq gp (ssget))(command "-hatchedit" gp "h"));hatch separate
oppure questo reperibile qui
http://forums.autodesk.com/t5/visua...olygons-each-in-the-layer/td-p/3275725/page/1the problem of these codes is that they probably work with the English versions of autocad.
In fact (in autocad 2013) the command "-hatchedit" in Italian becomes "_hatchedit". I can't find a match for the b p y commands.
Does anyone have a solution to propose or working lisp?
Thanks again for the help.
greetings
I open this topic to ask for information on several network lisp that should allow to recreate the contours of more retinals.
one of the many is this
;handy autocad-12 hatch edit 06/08/2009
;author: alex borodulin
;nyacad, inc. http://www.nyacad.com
(defun c:has(/ gp) (setq gp (ssget))(command "-hatchedit" gp "as" pause));convert hatch to associative
(defun c:hbo(/ gp) (setq gp (ssget))(command "-hatchedit" gp "b" "p" "y"));add boundary to hatch
(defun c:hf(/ gp) (setq gp (ssget))(command "-hatchedit" gp "o" "s" pause "n"));hatch fix
(defun c:hs(/ gp) (setq gp (ssget))(command "-hatchedit" gp "h"));hatch separate
oppure questo reperibile qui
http://forums.autodesk.com/t5/visua...olygons-each-in-the-layer/td-p/3275725/page/1the problem of these codes is that they probably work with the English versions of autocad.
In fact (in autocad 2013) the command "-hatchedit" in Italian becomes "_hatchedit". I can't find a match for the b p y commands.
Does anyone have a solution to propose or working lisp?
Thanks again for the help.
greetings