See my following example:
In[942]:= TMPG229me3ToITA
TMPG229me3ToITA . (TranslationTransform[{1/8,1/8,1/8}]//TransformationMatrix)
Out[942]= {{3/4, 5/8, 5/8, 0}, {5/8, 3/4, 5/8, 0}, {5/8, 5/8, 3/4,
0}, {0, 0, 0, 1}}
Out[943]= {{3/4, 5/8, 5/8, 1/4}, {5/8, 3/4, 5/8, 1/4}, {5/8, 5/8, 3/4,
1/4}, {0, 0, 0, 1}}
I want to obtain the exactly same result by using TranslationTransform command directly without calling the TransformationMatrix. I tried the following methods, but all cannot achieve the desired goal:
In[946]:= TranslationTransform[{1/8,1/8,1/8,0}][TMPG229me3ToITA]
TranslationTransform[{1/8,1/8,1/8,1}][TMPG229me3ToITA]
Out[946]= {{7/8, 3/4, 3/4, 0}, {3/4, 7/8, 3/4, 0}, {3/4, 3/4, 7/8,
0}, {1/8, 1/8, 1/8, 1}}
Out[947]= {{7/8, 3/4, 3/4, 1}, {3/4, 7/8, 3/4, 1}, {3/4, 3/4, 7/8,
1}, {1/8, 1/8, 1/8, 2}}
Obviously, I did not understand the use of this command correctly, but no related clues were found in the related documentation. Any tips will be appreciated.
Regards, Zhao