如何在处理中使对象不可见
我正在使用处理在素描板上制作矩形,但我想让它们不可见。我该怎么做?
I am making rectangles on the sketch board using processing, but I want to make them invisible. How do I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以不绘制它们,或者使用forth(alpha/透明度)参数fill 函数
不绘制:
绘制透明(只有笔画可见):
如果有帮助,这里有一个更长的版本:
贝壳是一个您可以运行的代码片段:
You can either not draw them, either use the forth(alpha/transparency) parameter for the fill function
not drawing:
drawing transparent(only strokes are visible):
If it helps, here's a longer version of the same:
Bellow is a snippet you can run:
您可以在绘图函数中放入一个 var 来控制它是否必须显示您想要的内容。
You could put in the draw function a var to control if it must show what you want.
添加 noStroke();并使颜色与背景颜色相同?
Add noStroke(); and make the color the same as the background color?