How can I make a shape's color fade more and more over time?

12 次查看(过去 30 天)
The code below sets each shape to have the same transparency.
hold on; grid on;
axis equal;
scale = .9;
movex = 0;
movey = 0;
squarex = [0 1 1 0];
squarey = [0 0 1 1];
for i = 1:11
squarex = (squarex * scale + movex);
squarey = (squarey * scale + movey);
movex = movex +1;
movey = movey +1;
h = fill(squarex,squarey,'r');
set(h,'facealpha',.7);
pause (.3)
end

采纳的回答

Image Analyst
Image Analyst 2014-4-22
Just make a transparency array
transparency = linspace(0, 1, 11); % Make 11 transparencies from 0 to 1 inclusive.
Then
set(h,'facealpha', transparency(i));

更多回答(1 个)

Hamid Radmard Rahmani

类别

Help CenterFile Exchange 中查找有关 Discrete Data Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by