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).
Asked
Active
Viewed 614 times
1
-
1See if any of these ideas work for your current problem: http://stackoverflow.com/a/8163002/931379 – Pursuit Dec 29 '11 at 06:47
-
Thank you for your comment. I had already tried those ideas and the number 2 is the unique that works properly. – julianfperez Dec 29 '11 at 09:28
1 Answers
1
Yes, just set the plot properties of MarkerFaceColor and MarkerEdgeColor to the same one.
x = 1:10; y = log2(x);
plot(x,y,'MarkerEdgeColor',[0 1 0],'MarkerFaceColor',[0 1 0],'MarkerSize',30,'Marker','v')

Andrey Rubshtein
- 20,795
- 11
- 69
- 104
-
Thank you for your answer. However, your solution does not work for my 3D animation. – julianfperez Dec 27 '11 at 18:53
-
@jfpeji, can you give an example of your code, I will be able to help. – Andrey Rubshtein Dec 27 '11 at 21:41
-
You can access my animation code clicking on the highlighted words (satellite movement around the Earth) of the question. – julianfperez Dec 28 '11 at 15:23