Save overlaying markers of plot in right order to pdf

조회 수: 4 (최근 30일)
Fa
Fa 2021년 9월 17일
답변: AKennedy 2024년 5월 8일
Hi guys,
i sometimes plot marker over each other to get a certain visual effect.
For example, if i want to visualize traffic cones from the "top view", you would see the outer square of the traffic cone and then two inner circles inside. I plot them the following way:
plot(conesX,conesY,'-s','MarkerEdgeColor',[1 0.5 0],'MarkerFaceColor',[1 0.5 0]);
plot(conesX,conesY,'-mo','MarkerEdgeColor',[1 1 1],'MarkerFaceColor',[1 0.5 0]);
If i plot it, everything looks as intended, but if i save it like that:
print('-dpdf','-fillpage',[path savename,'.pdf']);
Than the markers have a different order in which they are saved. If the Circles are saved first and than the square, in the output .pdf only the square is seen.
On the left side, you can the the result i want to have, but about half of the cones look like the right one.
Does anyone know, what to do?
  댓글 수: 1
darova
darova 2021년 9월 19일
Attach the code to produce cone. DId you try surf?

댓글을 달려면 로그인하십시오.

답변 (1개)

AKennedy
AKennedy 2024년 5월 8일
Hi Fa,
Problem: Overlapping markers in PDFs due to plotting order. Circles plotted first might be hidden by subsequently plotted squares.
Solution 1: Using hold on
  1. Plot circles first (using "plot").
  2. Use "hold on" to add squares on top (using "plot") ensuring they are drawn over the circles.
Solution 2: Using Patch Objects
  1. Create separate patch objects for squares (using "patch" with rectangle function) and circles (using "patch" with circle function, not shown but assumed available).
  2. Customize their properties (color, size).
  3. Use "hold on" and "patch" to control plotting order (squares over circles).
Choose the method that best suits your needs for simplicity or control over object appearance.

카테고리

Help CenterFile Exchange에서 Graphics Performance에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by