-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrotx.m
32 lines (27 loc) · 1.05 KB
/
rotx.m
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
function rotmat = rotx(alpha)
%rotx Rotation matrix around x-axis
% ROTMAT = rotx(ALPHA) returns the rotation matrix, ROTMAT, that rotates
% a point around the x-axis for an angle ALPHA (in degrees). The point is
% specified in the form of [x;y;z], with the x, y, and z axes forming a
% right-handed Cartesian coordinate system. With the x axis pointing
% towards the observer, ALPHA is measured counter-clockwise in the y-z
% plane.
%
% ROTMAT is a 3x3 matrix. The rotation of the point can be achieved by
% left-multiplying ROTMAT with the point's coordinate vector [x;y;z].
%
% % Example:
% % Rotate a point, (0,1,0), around x-axis 45 degrees
% % counter-clockwise.
%
% p = [0;1;0];
% p = rotx(45)*p
% Copyright 2012 The MathWorks, Inc.
% References:
% [1] James Foley, et. al. Computer Graphics Principles and Practices in
% C, 2nd Edition, Addison-Wesley, 1995
%#codegen
%#ok<*EMCA>
% rotate in the direction of y->z, counter-clockwise
rotmat = [1 0 0;0 cosd(alpha) -sind(alpha); 0 sind(alpha) cosd(alpha)];
% [EOF]