Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations JStephen on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Multilines

Status
Not open for further replies.

Hmo

Electrical
Joined
Nov 1, 2003
Messages
42
Location
BE
Is is possible to add a hatch to an multiline defenition? If so, then how do you do it.

mvg
HMO
 
Dear Hmo,
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
 
Hi,

i only know Mlines with a filling (solid)...

Lothar
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top