Anuncios

The Autodesk Community Forums has a new look. Read more about what's changed on the Community Announcements board.

Anonymous
1127 Vistas, 3 Respuestas

How to add a hatch pattern at 90 degrees?

Am using Autocad 2016.

 

How can one add a hatch pattern at 90 degrees?

 

Thank you for your help.

 

Kent1Cooper
en respuesta a: Anonymous

Rotation angle is one of the standard choices in Hatching [here from AutoCAD 2016]:

HatchAngle.PNG

 

Or, done by command-line prompts instead:

Command:  -HATCH
Current hatch pattern:  ANSI31
Specify internal point or [Properties/Se....sparency]: P
Enter a pattern name or [?/Solid/User defined/Gradient] <ANSI31>:
Specify a scale for the pattern <1.0000>:
Specify an angle for the pattern <0d0'0">: 90
Current hatch pattern:  ANSI31
Specify internal point or ....

Kent Cooper, AIA
scot-65
en respuesta a: Anonymous

Programmatically:

(setvar "HPANG" ang) ;where ang is in radians

For your request it is (/ pi 2.0)

???

Scot-65
A gift of extraordinary Common Sense does not require an Acronym Suffix to be added to my given name.


Anonymous
en respuesta a: Kent1Cooper

Thank you.