How can I make a shape's color fade more and more over time?
21 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Gimil
am 22 Apr. 2014
Beantwortet: Hamid Radmard Rahmani
am 24 Dez. 2018
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
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 22 Apr. 2014
Just make a transparency array
transparency = linspace(0, 1, 11); % Make 11 transparencies from 0 to 1 inclusive.
Then
set(h,'facealpha', transparency(i));
0 Kommentare
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Discrete Data Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!