フィルターのクリア

What's the Default Light from Figure Toolbar > Insert Light

3 ビュー (過去 30 日間)
Shaun VanWeelden
Shaun VanWeelden 2013 年 4 月 23 日
When I plot something and create a surface object, and then I go to figure > Insert > Light, it adds like the best lighting ever. I want to replicate the lighting that is added without obviously going through the menu bar. I am assuming this is something simple, but even copying the light object position and color properties exactly can't seem to replicate it.
Any advice would be appreciated!

回答 (1 件)

Sean de Wolski
Sean de Wolski 2013 年 4 月 23 日
surf(peaks)
Interactively add light
hLight = findobj(gcf,'type','light');
get(hLight)
And of course for more info:
doc light
BTW, while looking for this, I just learned about material: learn something new every day.
  3 件のコメント
Sean de Wolski
Sean de Wolski 2013 年 4 月 23 日
How it determines it appears to be undocumented. You can dig into the figure uimenu properties to figure out the callbacks:
surf(peaks)
h = findall(gcf,'Type','uimenu')
get(h,'Callback')
The easiest way to replicate this would be to call the same thing in one of the callbacks of the GUI. I'll update tomorrow or the next day with more thoughts on this.
Sean de Wolski
Sean de Wolski 2013 年 4 月 23 日
編集済み: Sean de Wolski 2013 年 4 月 23 日
figure('WindowButtonDownFcn','insertmenufcn Light;plottools off');
surf(peaks);
Now click down on the figure. As far as doing this automatically, I have a few other things on my mind. Will update tomorrow.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeStartup and Shutdown についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by