KegTed wrote:
Hi Folks, I'm a retired "t-square and triangle" drafter and I'm trying to learn something new in my old age. A neighbor friend (a retired engineer) gave me a PC that has AutoCAD LT 2013 installed on it. I wanted to try drawing the floor plan of the townhouse that my wife and I live in. After a lot of fiddling around, I found the line drawing tool. But every time I begin to draw a line by picking the first point with the mouse, the display and input switches to what I'd call 'Polar Coordinates'. In other words, it prompts for distance and angle for the second point. That type of input is completely foreign to me. How can I switch the input method to to 'Rectangular (x, y) coordinate' input?
|
Ted,
This is Basic AutoCAD. Since you're new to the program, you'll need to start at the very beginning.
Cartesian (i.e. X,Y,Z) coordinates can always be entered on the command line when Acad asks you for a point, a distance, or an angle. Cartesian coordinates work just like a sheet of graph paper; the bottom line of the grid is the X axis, which is numbered from left to right, and the left line of the grid is the Y axis, which is numbered from bottom to top. Coordinates are always measured from the axes - X first (distance from the 0 in a horizontal direction), then Y (distance form the 0 in a vertical direction). The point where the X and Y axis cross each other is called the 0,0 origin point. In CAD circles, it's usually just called 0,0.
Cartesian coordinates in Acad operate in two 'modes', Absolute, and Relative. Absolute coordinates are always measured from the 0,0 origin point, but Relative coordinates are measured from the last point you entered or clicked. Positive numbers always count to the right in the X direction, and up in the Y direction, while negative numbers draw to the left in the X direction and down in the Y direction.
If you start the Line command and type in "2,1", the first point of the line will be 2 units to the right of the 0,0 origin, and 1 unit up from the 0,0 origin. This is an Absolute coordinate.
Relative coordinates are entered by putting the @ symbol in front of the number when you type them in. So, when Acad asks you for the next point point, and you type in "@12,9", the line will be drawn 12 units to the right of the first point, and 9 units up from the first point. If you enter "@6,4" for the next point, the resulting line will be drawn 6 units over and 4 units up from the *previous point*, not from the first point or from the origin. Relative coordinates are always measured from the *last point you entered.*
Quick exercise:
To draw a rectangle that's 12x9, start the Line command, pick a random point for the first point, then type:
@12,0 <<draws a horizontal line 12 units long, 0 units tall, left to right>>
@0,9 <<draws a vertical line 0 units long, 9 units tall,bottom to top>>
@-12,0 <<draws another horizontal line 12 units long, 0 units tall, but it draws from right to left because of the - sign>>
@0,-9 <<draws another vertical line 0 units long, 12 units tall, but draws it from top to bottom because of the - sign>>
Another basic construction method in Acad is to draw horizontal and vertical lines using Ortho mode (toggle it on/off at the bottom left of the Acad window or by using Function key F8 on your keyboard), then using the Offset command to create parallel copies of these lines at set distance.
Draw a horizontal line.
Draw a vertical line that overlaps the horizontal line slightly
Click the Offset command from the Modify panel of the Home ribbon tab
When asked for an offset distance, enter 9
Click the horizontal line, then choose which side you want it to copy to <<a parallel copy of the line is created, 9 units away from the original, on the side you chose>>
Exit the Offset command
Restart the Offset command
When asked for an offset distance, enter 12
Click the vertical line, then choose which side you want it to copy to <<a parallel copy of the line is created, 12 units away from the original, on the side you chose>>
Exit the Offset command
Now you have a 12x9 rectangle, but the ends overlap. Use the Trim command to trim off the excess.
There are easier and quicker ways to do these things, but the preceding examples are meant to teach you basic methods of entering coordinates and distances into AutoCAD. These techniques are the basics that you need to construct simple, orthagonal room layouts.*
Bonus exercise:
*After you have created the outline of the room, try using the Offset and Trim commands to create an outer boundary representing the wall thickness, using a .5 unit offset distance.
Happy CADing.
Edited by TheWillCAD - 10.Jul.2015 at 18:51