How do I hide or resize poseplot local axes?
조회 수: 8 (최근 30일)
이전 댓글 표시
I'm trying to plot a view of my stl mesh file in poseplot. However, the actual object seems to be dwarfed by the set of axes that the poseplot function has added to the mesh file. Is there a way to resize the axes (or remove them altogether) so that the object is properly visible?

댓글 수: 0
채택된 답변
Ryan Salvo
2022년 5월 25일
Hi Floris-Jan Nieuwenhuis,
If the ScaleFactor Name-Value argument does not resolve the scaling issue, I recommend trying the plotTransforms command instead, as it provides more explicit controls for the length of the axes.
Thanks,
Ryan
댓글 수: 3
Ryan Salvo
2022년 5월 26일
To remove the frame axes in the plot, you can search for them in the axes handle returned by plotTransforms and then delete them.
figure
ax = plotTransforms([0 0 0], quaternion(1,0,0,0), "MeshFilePath", "groundvehicle.stl");
% Remove frame axes objects.
frameAxes = findobj(ax, "Type", "Line");
delete(frameAxes);
Please note that you will have to perform a more robust check on the output of findobj if your figure contains other Line objects that should not be deleted.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Coordinate Transformations and Trajectories에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!