How to show a rigidbodytree model in App Designer axes?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Yi Wan
el 22 de Oct. de 2018
Comentada: Yi Wan
el 23 de Oct. de 2018
So normally when I show a rigidbodytree robot, I use show(). However, I don't know whether show() is supported with UIAxes as the input argument. Basically what I want to do is to show the robot model in UIAxes.
Thanks for the help!
0 comentarios
Respuesta aceptada
Kevin Chng
el 22 de Oct. de 2018
Editada: Kevin Chng
el 22 de Oct. de 2018
Hi Yi Wan,
Yes, it is working with specify the 'Parent', which axes to host the show().
show(robot,'Parent',ax2)
[Update : Sorry for my mistake, it does not support UIAxes]
Therefore, I recommend you use Guide instead of app designer : https://www.mathworks.com/help/matlab/creating_guis/differences-between-app-designer-and-guide.html
load robot.mat
show(robot,'Parent',handles.axes1)
It is working well with guide axes, but not uiaxes. (Guide GUI is attached)
3 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Manipulator Modeling en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!