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).

Community
  • 1
  • 1
julianfperez
  • 1,726
  • 5
  • 38
  • 69
  • 1
    See 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 Answers1

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