Plot Color Lineweights

Plot Color Lineweights

Anonymous
Not applicable
6,645 Views
9 Replies
Message 1 of 10

Plot Color Lineweights

Anonymous
Not applicable

What are the "Default" plot line weight values AutoCAD has assigned to colors 1 thru 255?

0 Likes
Accepted solutions (1)
6,646 Views
9 Replies
Replies (9)
Message 2 of 10

rkmcswain
Mentor
Mentor

Depends on what you mean by default. Do you mean excluding any plot style assignments?

The following document says "The DEFAULT value is set by the LWDEFAULT system variable, which has an initial value of 0.01 inches or 0.25 mm. All new layers use the default setting. The lineweight value of 0 plots at the thinnest lineweight available on the specified plotting device and is displayed at one pixel wide in model space."

https://knowledge.autodesk.com/support/autocad-lt/learn-explore/caas/CloudHelp/cloudhelp/2017/ENU/Au...



R.K. McSwain     | CADpanacea | on twitter
0 Likes
Message 3 of 10

RobDraw
Mentor
Mentor

There are several pen setting files included with AutoCAD. I'm not sure I would consider any of them default, except for maybe Monochrome which has all of them the same.


Rob

Drafting is a breeze and Revit doesn't always work the way you think it should.
0 Likes
Message 4 of 10

Anonymous
Not applicable

Using the Screening 100%.ctb as an example, each of the colors listed ( 1 through 255) show a lineweight value as Use object lineweight instead of an actual value. If I create a drawing with 255 lines, all on the 0 layer, standard defaults on the layer manager, but assign each line a numbered color instead of by layer. When the lines are plotted each of them will have one of approximately 5 or 6 different lineweights, I want to know what lineweight AutoCAD has defined for each color. If they were all the same, all of the lines would plot the same. This is especially apparent when printed on a black and white plotter.

0 Likes
Message 5 of 10

rkmcswain
Mentor
Mentor

@Anonymous - I just repeated your test, and I get 255 identical lineweights.

 

If anyone else wants to try, here is a quick lisp to generate the lines.

 

(defun c:foo ()
(vl-cmdf "._line" (list 0 0 0) (list 0.5 0 0) "")
(setq ent (entlast))
(vl-cmdf "._change" (entlast) "" "_P" "_C" "1" "")
(setq y 0.1 col 2)
(repeat 254
(vl-cmdf "._copy" ent "" (list 0 0 0) (list 0 y 0))
(vl-cmdf "._change" (entlast) "" "_P" "_C" col "")
(setq col (1+ col))
(setq y (+ y 0.1))
)
(princ)
)
R.K. McSwain     | CADpanacea | on twitter
Message 6 of 10

Anonymous
Not applicable

I reprinted using a large format plotter instead of a printer and now I see, it is not a lineweight difference, but a grayscale difference creating an optical illusion.

 

On that note, I will change my question.

 

Is it possible to determine the grey color or light-dark value if any associated with each color?

Message 7 of 10

john.vellek
Alumni
Alumni

Hi @Anonymous,

 

I used @rkmcswain's lisp to quickly generate the lines for his test. Then I plotted to PDF with NONE as the plot style.

 

I don't see any difference in the lineweights.

Capture.PNG

 

What is the intent of your question? Are you trying to create a custom plot style or are you trying to get away from using them altogether?


John Vellek


Join the Autodesk Customer Council - Interact with developers, provide feedback on current and future software releases, and beta test the latest software!

Autodesk Knowledge Network | Autodesk Account | Product Feedback
0 Likes
Message 8 of 10

Anonymous
Not applicable

I was trying to decide that very question, and determine if I needed a new plot style or not.

0 Likes
Message 9 of 10

john.vellek
Alumni
Alumni
Accepted solution

Hi @Anonymous,

 

Some users don't use any Plot Styles as they feel it makes their workflow easier. I like to use my custom ones for being able to quickly plot with different styles depending on the purpose of the output. Do you need help in creating a CTB?  Have you mapped colors to lineweights for your office?

 

 

Please select the Accept as Solution button if my post solves your issue or answers your question.


John Vellek


Join the Autodesk Customer Council - Interact with developers, provide feedback on current and future software releases, and beta test the latest software!

Autodesk Knowledge Network | Autodesk Account | Product Feedback
0 Likes
Message 10 of 10

Anonymous
Not applicable

I'm starting from scratch, and determining which Standards will be used from this time forward. I understand the .ctb process, and appreciate the assistance.

 

Thanks.