Octave : How to change line color and width in drawRect

只谈情不闲聊 提交于 2020-01-02 22:00:25

问题


:-) Hi, guys.

Is there any way to change the line color and width of function drawRect in Octave ?

According to its reference, there's no property-value pair to set in this function.

Thanks.


回答1:


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.



来源:https://stackoverflow.com/questions/32032785/octave-how-to-change-line-color-and-width-in-drawrect

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