1

I would like to know if there is possible to set the transparency of a line marker to opaque in order to improve my animation (satellite movement around the Earth).

4

1 回答 1

1

是的,只需将MarkerFaceColorMarkerEdgeColor的绘图属性设置为相同。

x = 1:10; y = log2(x);
plot(x,y,'MarkerEdgeColor',[0 1 0],'MarkerFaceColor',[0 1 0],'MarkerSize',30,'Marker','v')
于 2011-12-26T12:05:17.037 回答