Familiarize yourself with how to navigate through AutoCAD.
- Drawing A Line In Autocad
- Autocad How To Draw L Shape
- Autocad How To Draw An Ellipse In Perspective
- Autocad How To Draw Cloud
- Autocad How To Draw Straight Line
Mar 29, 2019 Familiarize yourself with how to navigate through AutoCAD. The workspace in AutoCAD is divided into 2 distinct areas. The drawing area covers most of the screen and toolbars are anchored above and below the drawing. Click Home tab Draw panel Line. Specify the start point and end point of the line segment. Continue specifying additional line segments. Press Enter or Esc to end the command,.
- Application button: The large, red A at the top, left-hand corner of the screen is the application button. Use it to print files and to exit the program.
- Quick-access toolbar: This toolbar sits next to the application button and contains common commands like 'Save' and 'Open.'
- Ribbon: Located below the quick-access toolbar, the ribbon is comprised of a series of tabs (e.g., 'Home,' 'Insert,' 'Annotate,' 'View,' etc.) that contain groups of standard commands and tools.
- Status bar: The toolbar across the bottom of the screen is the status bar. It mostly consists of control settings that allow you to monitor changes in the drawing.
- Command/prompt toolbar: Directly above the status bar is the command/prompt toolbar. This is where the software communicates with you.
Issue:
An AutoCAD drawing or some objects within it need to be flattened because one or more of the following is not working correctly:- Selecting objects.
- Using the OSNAP (the marker jumps to the wrong place).
- Using TRIM, EXTEND, HATCH.
- Measure or dimensions (distance and angles).
- FILLET.
Causes:
AutoCAD drawing entities on the Z plane or which have elevation are not measuring or aligning correctly with other objects on a different plane. To see objects at different elevations, switch to a side 3D view.Solution:
To flatten a drawing automatically in AutoCAD:- Use the FLATTEN (not available in AutoCAD LT) command to change the Z values of all lines, arcs, and polylines to 0 (requires Express Tools to be loaded). Although it is possible to select and flatten everything in a drawing all at once, it might be necessary to use the QSELECT command to select each group of object types and then run the FLATTEN command on them.
- Turn off or freeze any hatch layers with hatch patterns so they are not included in the selection.
- Type FLATTEN at the command line.
- Select all objects and press the Enter key.
- Type N for No when prompted to remove hidden lines.
- For 3D objects, the FLATSHOT command can be used to create 2D views (not available in AutoCAD LT).
Replace the Z value For 3D objects in layout viewports:
- Enter OPTIONS in the command line.
- On the Drafting tab.
- Under Object snap options.
- Check Replace Z value with current elevation (not available in AutoCAD LT).
To flatten a drawing manually (or as is needed in AutoCAD LT):
- Select objects with the QSELECT command:
- Type in the QSELECT command.
- Select the object type.
- Choose the Elevation (or Start Z or End Z), and then Not Equal To > 0 (zero).
- In the Properties palette, change Elevation (or Start Z or End Z) to 0 (zero). Note: To use this method with certain objects such as blocks and groups, they must be first exploded.
- Use the CHANGE command:
- Type in the CHANGE command.
- Type ALL to select all objects and then Enter.
- Type P for Properties.
- Type E for Elevation.
- Type 0 and then a final Enter to end the command.
Alternate options:
One or both of the following LISP routines, pasted into the command line in AutoCAD will flatten a drawing.
- This command changes the elevation of all objects to zero:
Drawing A Line In Autocad
(command '_change'_all''p'e'0'')- This command moves objects very high and then back down to zero:
A couple buttons for this can be created in the CUI. These will work in AutoCAD LT:
- To flatten selected objects:
^C^C_UCS;;_select;_move;_p;;0,0,1e99;;_move;_p;;0,0,-1e99;;
- To flatten the entire drawing:
^C^C_UCS;;_move;_all;;0,0,1e99;;_move;_all;;0,0,-1e99;;
The ZIP file attached to this article is a script file that can be run in AutoCAD and AutoCAD LT which will remove the elevation of all objects in the drawing.
PDF workaround: