是否可以组合卷积矩阵来同时应用多个变换?

发布于 2024-12-22 01:29:53 字数 54 浏览 2 评论 0原文

理论上,应该可以通过加法或乘法来组合变换或颜色矩阵(当涉及到这种数学时,我很蹩脚)。是否可以?

Theoretically it should be possible to combine transformation or color matrices, through addition or multiplication (I'm lame when it comes to such math). Is it possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜味超标? 2024-12-29 01:29:53

这是!在 Flash 中,卷积矩阵在 flash.geom 包。变换矩阵是一个Matrix,颜色矩阵是一个ColorTransform。两者都实现了 concat 函数,让您可以乘以另一个矩阵的效果。

var a:Matrix = new Matrix();
a.translate(60, 40);

var b:Matrix = new Matrix();
b.rotate(60);

a.concat(b); // Matrix a now translates and rotates whatever it convolutes.

It is! In Flash, the convolution matrices are defined in the flash.geom package. The transformation matrix is a Matrix and the color matrix is a ColorTransform. Both implement a concat function letting you multiply the effects of another matrix.

var a:Matrix = new Matrix();
a.translate(60, 40);

var b:Matrix = new Matrix();
b.rotate(60);

a.concat(b); // Matrix a now translates and rotates whatever it convolutes.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文