davidoff Posted June 20, 2016 Posted June 20, 2016 Hello, I have a series of lines that I need to convert to hidden lines. Please let me give you the sequence that I used. I typed ltype at the command line and when my Linetype Manager window came up I selected Load, then the hidden lines I wanted. I then went into Modify Properties, selected linetype, the hidden that I selected, and x'd out of it. The lines remained solid. I would appreciate someone telling me what I am missing. I am using Autocad 2000 if it at all matters. Thank you, Ahmad Davidoff Quote
ReMark Posted June 20, 2016 Posted June 20, 2016 Are you using a metric or imperial template? Are you using metric or imperial linetypes? What linetype scale are you using? Quote
Dadgad Posted June 20, 2016 Posted June 20, 2016 Your profile says that you are using Solidworks 2010. Should you change that, or is it still your default software? Quote
eldon Posted June 20, 2016 Posted June 20, 2016 I typed ltype at the command line and when my Linetype Manager window came up I selected Load, then the hidden lines I wanted..... What File name was shown when you selected Load? Quote
davidoff Posted June 20, 2016 Author Posted June 20, 2016 My default setting is English Feet and Inches. I am using version 2000. I enclose a screen shot of my window. Quote
ReMark Posted June 20, 2016 Posted June 20, 2016 Could you answer eldon's question please? If you could attach a copy of the drawing to your next post that might be more helpful. Quote
davidoff Posted June 20, 2016 Author Posted June 20, 2016 I am enclosing the file itself. I tried changing the scale by typing ltscale at the command prompt and changing the scale to .0025 with the same result. Aim 80AU 20Sn Material.dwg Quote
tmelancon Posted June 20, 2016 Posted June 20, 2016 Depending on the scale of the drawing you may need to change your LTSCALE. As ReMark stated, posting sample file will expedite this process tremendously. That way someone can put their eyes on the drawing. Quote
ReMark Posted June 20, 2016 Posted June 20, 2016 Change the global linetype scale to a value of "1". Currently you have it set at 0.0025! Can I make a suggestion? Try using different layers for the various parts of your drawing instead of drawing everything on layer "0" and then overriding the color and linetype features of the layer? It would make your life so much easier. Quote
eldon Posted June 20, 2016 Posted June 20, 2016 In the drawing posted, there are no entities with the linetype Hidden2. Quote
tmelancon Posted June 20, 2016 Posted June 20, 2016 Yes I agree. Always create a Layer Standard and have them created with every drawing. Makes for much more efficient design. Something simple such as this would be sufficient: (defun S::STARTUP() (setvar "cmdecho" 0) (setq l_exist (tblsearch "layer" "New Layer")) (if (not l_exist) (command "._-layer" "N" "New Layer" "C" "5" "New Layer" "l" "hidden" "New Layer" "") ) ) Then switch to that layer before proceeding to draw your elements. Or if objects drawn already use this simple code to change to specified hidden layer with properties: (defun c:CTH () (setq sel_set (ssget)) (command "change" sel_set "" "p" "LAYER" "New Layer" "") (command "change" sel_set "" "p" "color" "bylayer" "") (princ) ) Quote
tmelancon Posted June 20, 2016 Posted June 20, 2016 After checking out your drawing. Your LTscale is seems entirely too small. I tried 0.5 LTscale and it looked great. Quote
tmelancon Posted June 20, 2016 Posted June 20, 2016 Yikes, let me elaborate.. Ok sorry, I noticed your Global Scale Factor is 0.0025. This needs to be changed to 1.0000 first. Then select your object and change LTscale to 0.5. This will yield the result I got on my end. Quote
ReMark Posted June 21, 2016 Posted June 21, 2016 Better yet create a template that has all the layers you'll find yourself needing and every time you start a new drawing use the template. You can also populate it with the text styles and dimension style you prefer as well as many other things (ex. - title block and border). Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.