What property of a line is related to the transparency / opacity or alpha of a line?
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Robbin van Hoek
am 14 Okt. 2020
Kommentiert: Ameer Hamza
am 17 Okt. 2020
when i plot a line with transparency by means of rgba color triplet and opacity.
hline = plot(x,y,'color',[1,0,0,0.5])
What property of the resulting handle is changed? I cannot find anything in the color triplet, nor can i find a seperate property like 'Alpha' or 'FaceAlpha' or anything similar.
0 Kommentare
Akzeptierte Antwort
Ameer Hamza
am 14 Okt. 2020
Bearbeitet: Ameer Hamza
am 14 Okt. 2020
This is an undocumented feature in MATLAB: http://undocumentedmatlab.com/articles/plot-line-transparency-and-color-gradient
You can access the alpha value using this line
alpha_val = hline.Edge.get.ColorData(4)
It is in uint8, you can convert to double
alpha_val = double(hline.Edge.get.ColorData(4))/255
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Lighting, Transparency, and Shading 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!