Difficulty: Easy
Correct Answer: polyline
Explanation:
Introduction / Context:
A frequent production task in CAD is drawing a stroke that starts thick and ends thin (or vice versa). In AutoCAD-class systems, this is done by creating a single object with variable width, which is critical for easy editing, snapping, and exporting to CAM/graphics workflows.
Given Data / Assumptions:
Concept / Approach:
A polyline supports start width and end width on each segment. By specifying different start/end widths, a taper is formed. This preserves the object as a single entity with editable vertices, widths, and curvature (if fit/spline options are used).
Step-by-Step Solution:
Verification / Alternative check:
Open Properties; confirm Polyline has width values. Print/plot preview to verify stroke appearance at scale.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing lineweight (plot style) with true polyline width; lineweight is a display/plot attribute, while polyline width is geometric.
Final Answer:
polyline
Discussion & Comments