Important: The information in this document is obsolete and should not be used for new development.
SlopeFromAngle
You can convert an angle value to a slope value using theSlopeFromAnglefunction.
FUNCTION SlopeFromAngle (angle: Integer): Fixed;
angle- The angle, expressed in clockwise degrees from 12 o'clock and treated
MOD180. (90 degrees is thus at 3 o'clock and -90 degrees is at 9 o'clock.)DESCRIPTION
TheSlopeFromAnglefunction returns the slope corresponding to the angle specified in theangleparameter. Slopes are defined as Dx/Dy, the horizontal change divided by the vertical change between any two points on a line with the given angle. The negative y-axis is defined as being at 12 o'clock, and the positive y-axis at 6 o'clock. The x-axis is defined as usual, with the positive side defined as being at 3 o'clock.SEE ALSO
For an example of the use of theSlopeFromAnglefunction, see Figure 3-7 on page 3-13.