弹性。使用矩阵缩放画布
嗨,我想知道如何使用矩阵来增加画布的分量! 如果可能,请显示研究代码)
Hi, I was wondering how you can use the matrix to increase the component of the canvas!
If possible, show the code for the study)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,您需要探索 相应文档。
然后您可以尝试以下代码:
我使用带有layout =“absolute”的Panel来进行说明,但它与Canvas相同(因此您可以毫无问题地使用Canvas)。
当然,您可以使用 concat() 方法来形成矩阵,并考虑使用scale()和translate()方法作为快捷方式:
希望这会有所帮助:)
First of all you need to explore corresponding documentation.
Then you can try the following code:
I used the Panel with layout="absolute" for illustrating purposes but it is the same as Canvas (so you can use Canvas without any problem).
And of course you can use concat() method to form the matrix and consider scale() and translate() methods as shortcuts:
Hope this helps :)