How to rotate a circle around y axis in matlab?
18 次查看(过去 30 天)
显示 更早的评论
Hi every body. I have some circles with different radius (r) and I would like to rotate it around y axis. This is my code:
for r=1:10
for teta=1:360
r=1; % radius
C=[0 0];% center
n=0.01;
theta=0:n*pi/360:2*pi; % the angle
m=r*[cos(theta')+C(1) sin(theta')+C(2)]; % the points of circles
R = [cosd(teta) -sind(teta); sind(teta) cosd(teta)]; % rotation matrix
Ry = [cos(teta) sin(teta); -sin(teta) cos(teta)]
point = m';
Circlepointcloud = Ry*point;
axis equal
set(gca,'Visible','off')
ax = gca;
save_name = sprintf('Circlepointcloud_%02d_%03d',r,teta)
save(save_name,'Circlepointcloud')
Name=['Circle' sprintf('Circlepointcloud_%03d_%03d',r,teta) '.jpg'];
exportgraphics(gca,Name,'Resolution',600);
plot(Circlepointcloud(1,:),Circlepointcloud(2,:),'o','color','black')
end
end
0 个评论
采纳的回答
Image Analyst
2022-4-30
编辑:Image Analyst
2022-4-30
You need to add drawnow at the bottom of the loop so you can see the progress.
You also need to add the center of the circle to the equation and apply the rotation matrix to the CENTER of the circle, not the circle itself because obviously rotating a cirlce about its center will not show any difference. The center should not be at (0,0) or else you won't see any rotation of course.
See attached demos where I rotated an ellipse.
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 3-D Scene Control 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!