I have 2 matrices as follows
R = [1,0,0,0
0,1,0,0
0,0,1,0
0,0,0,1]
and
T = [1,0,0]
Can I make a 4X4 Matrix from the above 2 in this format?
[ R | T
0 0 0 1]
This is basically obtaining the transformation matrix from the rotation and translation. I am trying using for loops and combining them into one matrix. But is there an easy way or a function that can help me do this in a shorter way?