-
Notifications
You must be signed in to change notification settings - Fork 2
/
vecrotz.m
48 lines (46 loc) · 1.06 KB
/
vecrotz.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
function rz = vecrotz(angle)
%
% Function Name:
%
% vecrotz - Transformation matrix for a rotation around the z axis.
%
% Calling Sequence:
%
% rz = vecrotz(angle);
%
% Parameters:
%
% angle : rotation angle defined in radians
%
% rz : (4x4) Transformation matrix.
%
%
% Description:
%
% Return the (4x4) Transformation matrix for a rotation about the z axis
% by the defined angle.
%
% The matrix is:
%
% [ cos(angle) -sin(angle) 0 0]
% [ -sin(angle) cos(angle) 0 0]
% [ 0 0 1 0]
% [ 0 0 0 1]
%
% Examples:
%
% Rotate the NURBS line (0.0 0.0 0.0) - (3.0 3.0 3.0) by 45 degrees
% around the z-axis
%
% line = nrbline([0.0 0.0 0.0],[3.0 3.0 3.0]);
% trans = vecrotz(%pi/4);
% rline = nrbtform(line, trans);
%
% See:
%
% nrbtform
% Dr D.M. Spink
% Copyright (c) 2000.
sn = sin(angle);
cn = cos(angle);
rz = [cn -sn 0 0; sn cn 0 0; 0 0 1 0; 0 0 0 1];