I want to iteratively modify plotted SE(3) transformations generated by the built-in function plotTransforms() for a sequence of transformations, without closing and re-plotting an existing figure.
I know for objects returned by plot() or plot3(), point positions can be modified using the set() function, such as
set(obj, 'XData', x_data, 'YData', y_data)
however, I cannot find a straightforward way to set plotted transformations returned by plotTransforms() and have them reflected on the current figure.
Is the function plotTransforms() the correct function to use for my application? If not, is there an alternative of displaying SE(3) elements that allows me to iteratively set their properties (position, orientation, etc.)?