I started a new drawing from the template file you posted. The CENTER, DASHED and HIDDEN linetypes on the lines on Layer 0 were not showing a pattern. I reloaded those linetypes from my ACAD.lin file, and the patterns showed as expected. The values for those definitions should be twice the values for the CENTER2, DASHED2 and HIDDEN2 linetypes. You may want to check to see that your ACAD.lin file has linetypes defined as shown below:
*CENTER,Center ____ _ ____ _ ____ _ ____ _ ____ _ ____
A,1.25,-.25,.25,-.25
*DASHED,Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _
A,.5,-.25
*HIDDEN,Hidden __ __ __ __ __ __ __ __ __ __ __ __ __ __
A,.25,-.125
Perhaps these three got loaded into the template file from the metric file, ACADISO.lin? The values there are 25.4 times larger to account for the fact that a millimeter is 25.4 times smaller than an inch. A quick check using the AutoLISP tblsearch function in a drawing started with your template without reloading the linetypes suggests that is the case here.
Command: (tblsearch "LTYPE" "CENTER")
((0 . "LTYPE") (2 . "CENTER") (70 . 0) (3 . "Center ____ _ ____ _ ____ _ ____ _ ____ _ ____") (72 . 65) (73 . 4) (40 . 50.8) (49 . 31.75) (49 . -6.35) (49 . 6.35) (49 . -6.35))
Command: (tblsearch "LTYPE" "DASHED")
((0 . "LTYPE") (2 . "DASHED") (70 . 0) (3 . "Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _") (72 . 65) (73 . 2) (40 . 19.05) (49 . 12.7) (49 . -6.35))
Command: (tblsearch "LTYPE" "HIDDEN")
((0 . "LTYPE") (2 . "HIDDEN") (70 . 0) (3 . "Hidden __ __ __ __ __ __ __ __ __ __ __ __ __ _") (72 . 65) (73 . 2) (40 . 9.525) (49 . 6.35) (49 . -3.175))
The "49" groups (scroll the code window to the right) contain the pen down/pen up distances, and those values correspond to the ACADISO.lin file values for those linetypes.
David Koch
AutoCAD Architecture and Revit User
Blog | LinkedIn