动态画笔 - GLPaint
我想知道 GLPaint 中有没有动态画笔的示例代码。 我正在寻找类似于 Photoshop 的东西,例如,画笔图案会随机调整大小和旋转,以便在绘图时具有更真实的纹理。
我在下面添加了一个示例来展示没有动态和有动态的差异。 使用 GLPaint 作为基础创建这样的东西是不是很困难?
I was wondering it there are any example codes to have dynamic brushes in GLPaint.
I'm searching for something that is similar to photoshop where for example the brush pattern gets resized and rotated randomly to have a more realistic texture when you're drawing.
I've added an example below to show the difference without dynamics and with dynamics.
Is it difficult to create something like this using GLPaint as a base?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,在 GLPaint 中,画笔是通过简单的纹理四边形应用的。所以是的,通过在四边形上应用正确的变换是可能的。
AFAIK in GLPaint the brush is applied by a simple textured quad. So yes it is possible by applying the right transformations on the quad.