变换形成曲线
有没有办法创建矩阵变换或任何其他变换来弯曲屏幕上的矩形元素?假设我有一个长矩形:宽度=50,高度=500。向下的 2/3 我希望它旋转 90 度。
谢谢你!
Is there a way to create a matrix transform or any other transformation to bend a rectangular element on the screen? Say I have a long rectangle: width=50 and height = 500. And 2/3 of the way down I want it to turn 90 degrees.
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您正在寻找的是各种 Geometry 类,尤其是 PathGeometry。
这些链接是一个好的开始:
http://msdn.microsoft.com/en- us/library/ms747393.aspx
http://msdn.microsoft.com/en-us/library/ms751808.aspx
I think what you're looking for are the various Geometry classes, especially PathGeometry.
These links are a good start:
http://msdn.microsoft.com/en-us/library/ms747393.aspx
http://msdn.microsoft.com/en-us/library/ms751808.aspx
您可以使用像素着色器(WPF 中的效果),但这将使该区域的命中测试变得无用。
You could use a pixel shader (effect in WPF), however this will render the hit test in that area useless.