Rotation about a point
이전 댓글 표시
Hi there I have been given a problem:
"A triangle is defined by the points (1, 1), (2, 4) and (7, 2). Using the three constituent simple transformations, transform the triangle with a rotation about the point (1, 3) by 60◦ anti-clockwise".
If I am being honest I have no idea how to start this
Any help would be great
Daniel
댓글 수: 2
madhan ravi
2018년 11월 15일
why do you close the question?
madhan ravi
2018년 11월 15일
If you keep closing the question , you wont get any further help hereafter
채택된 답변
추가 답변 (1개)
madhan ravi
2018년 11월 15일
편집: madhan ravi
2018년 11월 15일
x=[1 2 7 1];
y=[1 4 2 1];
fig=figure
h=plot(x,y)
center = [1 3];
rotate(h,center,-60)
title('ROTATED TRIANGLE @CENTER (1,3) anticlockwise')
print(fig,'Rotated_triangle','-dpng')
fig1=figure
plot(x,y)
title('ORIGINAL TRIANGLE')
print(fig1,'Orignal_triangle','-dpng')
댓글 수: 4
Daniel Campbell
2018년 11월 15일
madhan ravi
2018년 11월 15일
if my answer worked make sure to accept the answer
Daniel Campbell
2018년 11월 15일
madhan ravi
2018년 11월 15일
see edited answer
카테고리
도움말 센터 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!