when I tried to calculate the homogeneous matrix in two different ways, there was a very small
discrepency, 0 and 0.000000000000000061229677524420688 are in the same location of the two matrice.
The number 0.000000000000000061229677524420688 is extremely close to 0, so I take them as exactly
the same number. I though if I plug then into Atan2(,), the answers should be the same.
But unexpectedly, the answer are totally different. Here is the code segment:
Dim b = Atan2(0.000000000000000061229677524420688, 0)
Dim c = Atan2(0, 0)
After I run the code in compliler, b is 1.57096, c is 0.