How do I hide or resize poseplot local axes?

11 Ansichten (letzte 30 Tage)
Floris-Jan Nieuwenhuis
Floris-Jan Nieuwenhuis am 23 Mai 2022
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?

Akzeptierte Antwort

Ryan Salvo
Ryan Salvo am 25 Mai 2022
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 Kommentare
Ryan Salvo
Ryan Salvo am 26 Mai 2022
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.
Floris-Jan Nieuwenhuis
Floris-Jan Nieuwenhuis am 30 Mai 2022
I've tried a few configurations with the plotTransforms command, but utlimately not being able to scale the model has a huge disadvantage in my application. I'll stick to the poseplot command.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Coordinate Transformations and Trajectories finden Sie in Help Center und File Exchange

Tags

Produkte


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by