To use a coordinate to specify a point, enter an X value and a Y value separated by a comma (X,Y). The X value is the positive or negative distance, in units, along the horizontal axis. The Y value is the positive or negative distance, in units, along the vertical axis.
Absolute coordinate values are based on the origin (0,0), where the X and Y axes intersect. Use an absolute coordinate when you know the precise X and Y values of the point coordinate. For example, the coordinate 3,4 specifies a point 3 units along the X axis and 4 units along the Y axis from the origin.
Relative coordinate values are based on the last point entered. Use a relative coordinate when you know the position of a point in relation to the previous point. To specify a relative coordinate, precede the coordinate with an @ symbol. For example, the coordinate @3,4 specifies a point 3 units along the X axis and 4 units along the Y axis from the last point specified.
The following example draws a line beginning at a point with an X value of -2, a Y value of 1, and an endpoint at 3,4. Pressing ENTER at the To Point prompt ends the command.
Command: Enter line
From point: Enter 2,1
To point: Enter 3,4
The following example draws a line whose endpoint is 5 units in the X direction and 0 units in the Y direction from the start point at the absolute coordinate -2,1. Pressing ENTER at the next To Point prompt ends the command.
Command: Enter line
From point: Enter -2,1
To point: Enter @5,0