Octave : How to change line color and width in drawRect

蓝咒 提交于 2019-12-08 04:58:29

The drawRect function does not accept a property-value pair, but it does return a graphics handle from where you can set any property:

r = drawRect (x, y, w, h);
set (r, "color", [1 0 0]); # set to red (RGB triplets)
set (r, "linewidth", 5);

Use get (r) to see a list of all properties, or read the manual section graphics object properties.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!