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
49
50
use crate*;
/// Rotate an r-matrix about the x-axis.
///
/// Given:
/// * phi angle (radians)
/// * r-matrix
///
/// Given and returned:
/// * r src matrix, rotated about the x-axis
///
/// # Notes:
///
/// 1) Calling this function with positive phi incorporates in the
/// supplied r-matrix r an additional rotation, about the x-axis,
/// anticlockwise as seen looking towards the origin from positive x.
///
/// 2) The additional rotation can be represented by this matrix:
///
/// ( 1 0 0 )
/// ( )
/// ( 0 + cos(phi) + sin(phi) )
/// ( )
/// ( 0 - sin(phi) + cos(phi) )
///
/// This revision: 2021 May 11