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
38
39
40
41
42
43
44
45
46
47
48
use crate*;
/// Rotate an r-matrix about the y-axis.
///
/// Given:
/// theta angle (radians)
///
/// Given and returned:
/// r r-matrix, rotated
///
/// # Notes:
///
/// 1) Calling this function with positive theta incorporates in the
/// supplied r-matrix r an additional rotation, about the y-axis,
/// anticlockwise as seen looking towards the origin from positive y.
///
/// 2) The additional rotation can be represented by this matrix:
///
/// ( + cos(theta) 0 - sin(theta) )
/// ( )
/// ( 0 1 0 )
/// ( )
/// ( + sin(theta) 0 + cos(theta) )
///
/// This revision: 2021 May 11