-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdrone_Animation.m
More file actions
87 lines (77 loc) · 3.2 KB
/
drone_Animation.m
File metadata and controls
87 lines (77 loc) · 3.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
function animation = drone_Animation(x,y,z,roll,pitch,yaw)
% This Animation code is for QuadCopter. Written by Jitendra Singh
%% Define design parameters
D2R = pi/180;
R2D = 180/pi;
b = 0.6; % the length of total square cover by whole body of quadcopter in meter
a = b/3; % the legth of small square base of quadcopter(b/4)
H = 0.06; % hight of drone in Z direction (4cm)
H_m = H+H/2; % hight of motor in z direction (5 cm)
r_p = b/4; % radius of propeller
%% Conversions
ro = 45*D2R; % angle by which rotate the base of quadcopter
Ri = [cos(ro) -sin(ro) 0;
sin(ro) cos(ro) 0;
0 0 1]; % rotation matrix to rotate the coordinates of base
base_co = [-a/2 a/2 a/2 -a/2; % Coordinates of Base
-a/2 -a/2 a/2 a/2;
0 0 0 0];
base = Ri*base_co; % rotate base Coordinates by 45 degree
to = linspace(0, 2*pi);
xp = r_p*cos(to);
yp = r_p*sin(to);
zp = zeros(1,length(to));
%% Define Figure plot
fig1 = figure('pos', [0 50 800 600]);
hg = gca;
view(68,53);
grid on;
axis equal;
xlim([-1.5 1.5]); ylim([-1.5 1.5]); zlim([0 3.5]);
title('(JITENDRA) Drone Animation')
xlabel('X[m]');
ylabel('Y[m]');
zlabel('Z[m]');
hold(gca, 'on');
%% Design Different parts
% design the base square
drone(1) = patch([base(1,:)],[base(2,:)],[base(3,:)],'r');
drone(2) = patch([base(1,:)],[base(2,:)],[base(3,:)+H],'r');
alpha(drone(1:2),0.7);
% design 2 parpendiculer legs of quadcopter
[xcylinder ycylinder zcylinder] = cylinder([H/2 H/2]);
drone(3) = surface(b*zcylinder-b/2,ycylinder,xcylinder+H/2,'facecolor','b');
drone(4) = surface(ycylinder,b*zcylinder-b/2,xcylinder+H/2,'facecolor','b') ;
alpha(drone(3:4),0.6);
% design 4 cylindrical motors
drone(5) = surface(xcylinder+b/2,ycylinder,H_m*zcylinder+H/2,'facecolor','r');
drone(6) = surface(xcylinder-b/2,ycylinder,H_m*zcylinder+H/2,'facecolor','r');
drone(7) = surface(xcylinder,ycylinder+b/2,H_m*zcylinder+H/2,'facecolor','r');
drone(8) = surface(xcylinder,ycylinder-b/2,H_m*zcylinder+H/2,'facecolor','r');
alpha(drone(5:8),0.7);
% design 4 propellers
drone(9) = patch(xp+b/2,yp,zp+(H_m+H/2),'c','LineWidth',0.5);
drone(10) = patch(xp-b/2,yp,zp+(H_m+H/2),'c','LineWidth',0.5);
drone(11) = patch(xp,yp+b/2,zp+(H_m+H/2),'p','LineWidth',0.5);
drone(12) = patch(xp,yp-b/2,zp+(H_m+H/2),'p','LineWidth',0.5);
alpha(drone(9:12),0.3);
%% create a group object and parent surface
combinedobject = hgtransform('parent',hg );
set(drone,'parent',combinedobject)
% drawnow
for i = 1:length(x)
ba = plot3(x(1:i),y(1:i),z(1:i), 'b:','LineWidth',1.5);
translation = makehgtform('translate',...
[x(i) y(i) z(i)]);
%set(combinedobject, 'matrix',translation);
rotation1 = makehgtform('xrotate',(pi/180)*(roll(i)));
rotation2 = makehgtform('yrotate',(pi/180)*(pitch(i)));
rotation3 = makehgtform('zrotate',yaw(i));
%scaling = makehgtform('scale',1-i/20);
set(combinedobject,'matrix',...
translation*rotation3*rotation2*rotation1);
%movieVector(i) = getframe(fig1);
%delete(b);
drawnow
% pause(0.2);
end