Layer would be ok too.
I work in the sheetmetal industry and triangle is to show bend orientation on flat file.
Changing layer would be ok too, just some way to make CAM software know not to cut the triangle into the part.
I am fairly new to Autocad in general. It appears to be independent lines. Properties when selected shows Line(3) and alot of "*VARIES*"
I tried adapting code I found here (http://www.cadtutor.net/forum/showthread.php?72546-Erase-specified-length-of-lines-in-by-Script-Lisp):
- (defun j:CHCOLORB (/ ss i sn l) (if (setq ss (ssget "_:L" '((0 . "LINE")))) (repeat (setq i (sslength ss)) (setq sn (ssname ss (setq i (1- i)))) (setq l (distance (cdr (assoc 10 (entget sn))) (cdr (assoc 11 (entget sn))))) (if (or (eq l 0.1876 ) (eq l 0.1875) ) (command "._CHANGE" sn "" "Properties" "Color" "8" "")) ) ) (princ) )
There aren't likely any other lines this length. Not ideal but would work until I learn more.
The code above requires I make a selection than says "x objects found" but does not change their color.
Thanks for the help. |