Java 在Android中矩阵连接是向后的吗?

Java 在Android中矩阵连接是向后的吗?,java,android,Java,Android,我希望(基于直觉和Java中的实现): 但根据android文档: public boolean preConcat (Matrix other) 使用指定的矩阵对矩阵进行预处理。M'=M x其他 public boolean postConcat (Matrix other) 后置将矩阵与指定的矩阵合并。M'=其他x M 在我看来,这似乎有点倒退,我是不是遗漏了什么?我想之所以调用“post concat”方法,是因为矩阵other描述的变换是在变换矩阵M代表的变换后执行的;如果不

我希望(基于直觉和Java中的实现):

但根据android文档:

public boolean preConcat (Matrix other)  
使用指定的矩阵对矩阵进行预处理。M'=M x其他

public boolean postConcat (Matrix other)  
后置将矩阵与指定的矩阵合并。M'=其他x M


在我看来,这似乎有点倒退,我是不是遗漏了什么?

我想之所以调用“post concat”方法,是因为矩阵
other
描述的变换是在变换矩阵
M
代表的变换后执行的;如果不正确,请还原。这不是像Python中著名的string.join(iterable)吗在
AffineTransform
中,
concat()
扮演假设的
postConcat()
角色。这是我的观点,在AffineTransform中,concat()扮演假设的postConcat()规则,这与矩阵的pretcat()相同。这似乎是倒退。这就是为什么我想知道我是否错过了什么。。。
public boolean postConcat (Matrix other)