Getting current position (x,y) of a 2D object created with a patch
Show older comments
x = [-9 , 3, 1, 9, 1, 3, -9 ];
y = [-3,-3,-9/2, 0, 9/2, 3, 3];
g = hgtransform;
patch('XData',x,'YData',y,'FaceColor','yellow','Parent',g)
The patch moves consistently through the plot, at 2 points it stops to correct its angle. Is there anyway to get a hold of its current x&y positions at that point for further use?
Answers (1)
sloppydisk
on 11 May 2018
p = patch('XData',x,'YData',y,'FaceColor','yellow','Parent',g);
p.Vertices
This should do it.
Categories
Find more on Polygons in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!