Autocad 05 and up. Measuring
Autocad 05 and up. Measuring
(OP)
is there anyway, to get a measurement on a drawing that has two parrellel lines with a fillet between them. Currently, I am just using inguiry - measure for the lines, and then arc length for the fillets, then I have to add them all together. Is there a one shot measuring tool.





RE: Autocad 05 and up. Measuring
"Everybody is ignorant, only on different subjects." — Will Rogers
RE: Autocad 05 and up. Measuring
If you can't find one, it wouldn't be difficult to make one. Post back if you would like some help creating a LISP to do this.
RE: Autocad 05 and up. Measuring
CODE
(setq as (ssget (list
'(-4 . "<or")
'(0 . "POLYLINE")
'(0 . "LWPOLYLINE")
'(0 . "LINE")
'(0 . "ARC")
'(0 . "CIRCLE")
'(0 . "SPLINE")
'(-4 . "or>")
)
)
)
(setvar "CMDECHO" 0)
(if as
(setq elemli (bau_elemli as)
z 0
)
)
(if elemli
(progn
(setq plangli
(mapcar
'(lambda (plli)
(command "_.LENGTHEN" plli "")
(getvar "PERIMETER")
);lambda
elemli
);mapcar
)
(terpri)
(princ "Gesamt:\t")
(princ (apply '+ plangli))
(princ)
);progn
);if
)
(defun bau_elemli (asatz / n elemli)
(setq n 0)
(repeat (sslength asatz)
(setq elemli (cons (ssname asatz n) elemli)
n (1+ n)
)
)
elemli
)
...not my code...
L.
ADT 2004
ACAD 2002
RE: Autocad 05 and up. Measuring