Write a function in GO named ScaleTranslation that returns thestandard 3-D graphics matrix with the first three parameters beingthe scale factors (main diagonal) and last three parameters beingthe translation factors (fourth column, first three rows) so thiscall to ScaleTranslation(2, 3, 4, 5, 6, 7) returns this matrix:
2005
0306
0047
0001
Expert Answer
Answer to Write a function in GO named ScaleTranslation that returns the standard 3-D graphics matrix with the first three paramet…