blob: 12330f97963df901912f42a8a0d278a6b8a13799 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
@node Miscellaneous
@section Miscellaneous
Miscellaneous math procedures.
@anchor{2d math pi}@defvar pi
@end defvar
@anchor{2d math degrees->radians}@defun degrees->radians angle
Convert ANGLE in degrees to radians.
@end defun
@anchor{2d math radians->degrees}@defun radians->degrees angle
Convert ANGLE in radians to degrees.
@end defun
@anchor{2d math sin-degrees}@defun sin-degrees angle
Compute the sin of ANGLE expressed in degrees.
@end defun
@anchor{2d math cos-degrees}@defun cos-degrees angle
Compute the cosine of ANGLE expressed in degrees.
@end defun
@anchor{2d math tan-degrees}@defun tan-degrees angle
Compute the tangent of ANGLE expressed in degrees.
@end defun
@anchor{2d math atan-degrees}@defun atan-degrees y x
Compute the arctangent in degrees of the coordinates Y and X.
@end defun
|