AutoCAD Hatch Patterns: A Practical Guide for Architects
- Steve Fagan

- 1 day ago
- 8 min read

The fastest path to a working AutoCAD hatch pattern is this: download a trusted .pat file, drop it into your Support folder, restart AutoCAD, and load it through the HATCH command. You can be hatching a floor plan in under five minutes. The most reliable free sources are Autodesk’s own documentation, the CADhatch community library, the QCad/John Hyslop free pattern collection, Coronado stone and texture .pat downloads, and S15Studio’s Ireland-ready templates.
Quick steps to get started:
Download a .pat file from a trusted source
Add its folder to Options > Files > Support File Search Path (or copy it to your user Support folder)
Restart AutoCAD
Run the HATCH command, set Type to Custom, browse to the .pat file, and select your pattern
Two things to check before you start: the MEASUREMENT system variable must match your drawing units (metric Irish projects use acadiso.pat, not acad.pat), and either set HPSCALE to a sensible value or make the hatch annotative so it stays consistent across viewports.
Key Takeaways
Custom hatch patterns in AutoCAD work reliably when the .pat file is in a listed Support path, MEASUREMENT matches your drawing units, and HPSCALE or annotative scaling is set before you start hatching.
Point | Details |
Download from trusted sources | Use Autodesk built-ins, CADhatch, QCad/John Hyslop, Coronado, or S15Studio templates for metric-ready Irish practice. |
Install via Support File Search Path | Add your .pat folder in Options > Files, restart AutoCAD, then load with HATCH > Custom. |
Fix invisible or solid hatches first | Check MEASUREMENT (set to 1 for metric) and adjust HPSCALE or use User Defined spacing. |
Blank line rule is non-negotiable | Every .pat file must end with a blank line or the last pattern is silently dropped by AutoCAD. |
S15Studio for office-ready setup | S15Studio’s AutoCAD course includes metric templates, recommended scale values, and trainer support for Irish projects. |
Table of Contents
Where can you download reliable AutoCAD hatch pattern libraries?
The table below covers the sources architects reach for most, with a note on what each one actually delivers.
Source | What you get | Licensing | Best for |
Autodesk (acad.pat / acadiso.pat) | Built-in patterns shipped with AutoCAD | Included with license | Starting point; metric acadiso.pat for Irish metric drawings |
CADhatch | Large architectural material library: brick, stone, wood, concrete, roofing | Royalty-free for use in drawings | Broad material sets for construction documents |
QCad / John Hyslop collection | Community-contributed patterns, varied motifs | Free, open community license | Supplementary textures and specialty patterns |
Coronado | Stone, masonry, and texture .pat sample packs | Vendor-provided, check terms | Stone cladding and masonry details |
S15Studio templates | Ireland-ready .pat sets with metric defaults and recommended HPSCALE values | Included with course resources | Irish practice standards, metric drawings |
Ireland-specific note: Irish architectural projects work in metric, so always confirm a downloaded pattern was designed for acadiso.pat (metric) rather than acad.pat (imperial). A pattern that looks perfect in a US drawing will be much too large or too small in a metric Irish project. Centralizing all .pat files in a shared office network folder keeps everyone on the same library and prevents the “works on my machine” problem.
How to install custom .pat files on Windows and macOS
Windows installation
The default user Support folder on Windows sits at:
C:\Users\<username>\AppData\Roaming\Autodesk\AutoCAD <version>\Rxx.x\<language>\Support
AppData is hidden by default. Before you can copy files there, show hidden files in Windows Explorer through View > Show > Hidden items.
Copy your .pat file into the Support folder above, or place it in any folder you prefer.
Open AutoCAD and go to Options > Files > Support File Search Path.
Click Add and browse to your custom folder. Click OK.
Restart AutoCAD so it indexes the new path.
Set HPDLGMODE = 1 to use the classic Hatch dialog (easier for browsing custom patterns).
Run HATCH, set Type to Custom, click the browse button, select your .pat file, then choose the specific pattern name from the list.
macOS installation
On macOS the workflow is slightly different. Run the HATCH command, open the Hatch visor Pattern menu, choose Open Library, then Add Patterns. AutoCAD copies the .pat file into its own macOS Support path automatically. You can also drop files directly into:
~/Library/Application Support/Autodesk/AutoCAD <version>/Rxx.x/<language>/Support
When a pattern doesn’t appear
Check that the .pat file is in a folder listed under Support File Search Path. Open the file in Notepad and confirm there is a blank line after the last pattern definition. A missing blank line is one of the most common reasons the final pattern in a file is silently ignored, per Autodesk’s PAT syntax documentation. Also confirm the file is plain ASCII, not UTF-8 with BOM or a Word document saved with a .pat extension.
Pro Tip: Add one central network folder to every workstation’s Support File Search Path. Deploy new .pat files to that folder once and every user picks them up on next restart, no individual installs needed.
How do hatch scale, MEASUREMENT, and annotative hatches affect your drawings?
Invisible or solid hatches are almost always a units problem. AutoCAD selects between acad.pat (imperial) and acadiso.pat (metric) based on the MEASUREMENT system variable. Set MEASUREMENT = 1 for metric, 0 for imperial. A pattern designed at 1-unit spacing looks correct in a millimeter drawing but becomes a solid smear in a kilometer-scale site plan, or disappears entirely in a detail drawn in meters.

The Autodesk Community recommends the User Defined hatch type for simple parallel-line patterns. Instead of guessing a scale multiplier, you type the exact spacing in drawing units. For a 5mm brick joint in a millimeter drawing, type 5. No trial and error.
For drawings with multiple viewport scales, make hatches annotative. Set HPANNOTATIVE = 1 and AutoCAD adjusts the hatch density per viewport automatically. For single-scale model-space details, a fixed HPSCALE is simpler and more predictable.
Pro Tip: If a hatch is rejected with “scale too small” or “too many lines,” raise HPMAXLINES cautiously. Higher values allow denser patterns but increase memory use and regeneration time. Test in a copy of the drawing first.
Key system variables to know:
Variable | What it controls |
HPSCALE | Global hatch scale multiplier |
HPANNOTATIVE | Toggles annotative behavior on/off |
HPMAXLINES | Maximum hatch lines before AutoCAD rejects the pattern |
MEASUREMENT | Selects acad.pat (0) or acadiso.pat (1) |
How to edit or create a simple .pat file from scratch
A .pat file is plain text. Open Notepad, write the pattern, save with a .pat extension, and you’re done. The structure follows a strict format:
Header line: starts with *, then the pattern name (31 characters max), optionally followed by a comma and a description.
Data lines: each defines one line family: angle, x-origin, y-origin, delta-x, delta-y, dash-lengths
A minimal 45° diagonal line pattern at 3mm spacing looks like this:
*DIAG45, 45 degree diagonal lines at 3mm
45, 0, 0, 0, 3
Change the 45 to 0 for horizontal lines. Change the 3 to 6 for wider spacing. Add a dash sequence after delta-y (e.g., 3, -1.5) for a dashed line family.
Key editing rules:
Save as plain ASCII. UTF-8 with BOM breaks the parser.
Add a blank line after the last pattern or AutoCAD silently drops it.
Watch your decimal separator. Some locales default to a comma, which corrupts the data-line parsing.
Restart AutoCAD after saving to refresh thumbnails.
For complex material textures (realistic stone, wood grain, photographic fills), tiled blocks or image-based fills are more practical than multi-family .pat files. A .pat pattern with dozens of line families becomes hard to maintain and slow to regenerate.
Troubleshooting common hatch problems fast
Pro Tip: Test any new .pat file in a fresh drawing set to 1:1 scale before deploying it to a project. It isolates whether the problem is the file or the drawing context.
Common fixes:
Pattern not listed in HATCH dialog: Confirm the folder is in Support File Search Path. Restart AutoCAD. Check the file has a blank line at the end.
Hatch appears solid: Scale is too small for the current drawing units. Increase HPSCALE or switch to User Defined spacing. Check MEASUREMENT matches your units.
“Too many hatch lines” error: Raise HPMAXLINES or increase the hatch scale. Dense patterns at small scales hit the limit quickly.
Pattern alignment is off: Use Set Origin in the Hatch editor to anchor the pattern to a known point. Check delta-x and delta-y values in the PAT data line if the repeat is wrong.
Thumbnails missing after install: Restart AutoCAD. If thumbnails still don’t appear, the pattern is still usable by typing its name directly. Verify file encoding and the blank-line termination.
AppData folder not visible: Enable hidden files in Windows before navigating to the Support path.
For a broader look at drafting errors that compound hatch problems, the common AutoCAD drafting mistakes guide covers unit and scale issues that show up repeatedly in practice.
Managing hatch libraries for Irish architectural projects the S15Studio way
A consistent office hatch library doesn’t happen by accident. It needs a deliberate setup that survives staff changes and AutoCAD version upgrades.
Office standardization checklist:
Create one central network folder for all .pat files and add it to every workstation’s Support File Search Path.
Use clear naming conventions in PAT headers: include the material, scale intent, and unit system (e.g., *BRICK_METRIC_5MM, Running bond brick at 5mm joint).
Document the intended drawing units and recommended HPSCALE for each pattern in a short README stored alongside the .pat files.
After deploying new patterns, send a restart reminder to the team. AutoCAD only indexes Support paths at startup.
Include frequently used .pat files in project template support paths so new projects inherit the library automatically.
For drawing setup that ties directly into hatch scale and unit choices, the AutoCAD architectural drawing setup guide covers the full template workflow.
Pro Tip: Before releasing a new pattern to the office, print a test sheet at the intended final plot scale. A pattern that looks right on screen at 1:50 can plot as a solid smear or near-invisible lines at 1:100. Test at the actual output scale, not just on screen.
A trainer’s note on getting hatches right
The single most common hatch problem I see is a MEASUREMENT mismatch. An architect opens a drawing, applies a pattern, and gets a solid fill or nothing at all. Nine times out of ten, the drawing is metric but MEASUREMENT is set to 0, so AutoCAD is reading acad.pat instead of acadiso.pat. Check that variable first, every time.
The second thing worth knowing: User Defined spacing is underused. For brick coursing, insulation lines, or any simple parallel pattern, skip the custom .pat entirely and type the spacing directly. It’s faster, it’s predictable, and it scales correctly because you’re working in drawing units from the start. S15Studio’s AutoCAD training covers both approaches in depth, with Ireland-specific templates that set MEASUREMENT, units, and annotative scales correctly from the first line of a new drawing.
S15Studio AutoCAD training covers hatch patterns and office templates
Downloading a .pat file gets you started. Knowing how to build a consistent, scalable hatch library across an entire office is a different skill, and it’s one that saves hours on every project.

S15Studio’s complete AutoCAD training course walks you through hatch patterns, drawing standards, annotative scaling, and template setup in a structured, project-based format built for architects and technicians in Ireland. You get downloadable templates with metric defaults already configured, recommended HPSCALE values for common Irish drawing scales, and direct support from an Autodesk Certified Trainer. The course covers everything from beginner commands to advanced office standards, with lifetime access to materials. For architects who want structured AutoCAD and Revit training together, the complete Revit and AutoCAD training package covers both platforms with certification preparation included. Start with the AutoCAD course and have a working, standards-compliant hatch library set up before your next project kicks off.
Sources
Key references used in this guide:
Recommended
Comments