qfwaterlily 发表于 2009-10-13 20:17

已知中心,长,宽,角度,画一倾斜矩形

中心、长、宽均已知,如何画与x轴呈一定角度的倾斜矩形???:@Q

VibrationMaster 发表于 2009-10-13 21:26

width=30;
length=4;
xc=20;yc=30;
RotationgAngle=60; % in degree

% Computing the Relative Position After Rotation
RotationgAngle=RotationgAngle/180*pi;
RotateMatrix=;
PostRT=RotateMatrix*';
PostRB=RotateMatrix*';

PostXY=+repmat(',);
plot(PostXY(1,:),PostXY(2,:))
axis image

qfwaterlily 发表于 2009-10-13 22:33

谢谢

问题解决了,非常感谢!

ChaChing 发表于 2009-10-13 23:59

感觉上应该是
RotateMatrix=;
页: [1]
查看完整版本: 已知中心,长,宽,角度,画一倾斜矩形