Multilines
Multilines
(OP)
Is is possible to add a hatch to an multiline defenition? If so, then how do you do it.
mvg
HMO
mvg
HMO
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS Come Join Us!Are you an
Engineering professional? Join Eng-Tips Forums!
*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting GuidelinesJobs |
|
RE: Multilines
You can hatch a multi-line by a single click using the following code:
(defun c:mhh()
(command "hatch" "" "" "" (car (entsel)) "")
)
The code can be placed in the "acad.lsp" to be loaded automatically.
The code hatches the picked mline with the current pattern, scale, and rotation angle. The a.m. parameters are linked to the HPNAME, HPSCALE, and HPANG system variables, respectively.
:)
Farzad
RE: Multilines
i only know Mlines with a filling (solid)...
Lothar