CGAL gives an example of how to rotate a Nef_polyhedron 90 degrees around the x-axis (https://doc.cgal.org/latest/Nef_3/Nef_3_2transformation_8cpp-example.html). I am not exactly sure what the parameters that are being passed in the rotx90 variable mean and I can't find any extra information about them. Can someone elaborate on them?
Aff_transformation_3 rotx90(1,0,0,
0,0,-1,
0,1,0,
1);,
N.transform(rotx90);
My goal is to create a function that takes in three arguments: degreesX, degreesY, and degreesZ, and converts these three arguments into the nessesary parameters for the rotx90 variable.