-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSampleShapeData.m
executable file
·53 lines (49 loc) · 1.33 KB
/
SampleShapeData.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
49
50
51
52
53
% Just some sample face and vertex data.
% platonic_solid by Kevin Moerman: https://www.mathworks.com/matlabcentral/fileexchange/28213-platonic-solid
% helped me generate these numbers
V1 = [ 0.0000 -1.0515 -1.7013
0.0000 -1.0515 1.7013
0.0000 1.0515 1.7013
0.0000 1.0515 -1.7013
-1.0515 -1.7013 0
-1.0515 1.7013 0
1.0515 1.7013 0
1.0515 -1.7013 0
-1.7013 0.0000 -1.0515
1.7013 0 -1.0515
1.7013 0 1.0515
-1.7013 0.0000 1.0515];
F1 = [ 1 4 9
1 5 9
1 8 5
1 8 10
1 10 4
12 2 5
12 2 3
12 3 6
12 6 9
12 9 5
11 7 10
11 10 8
11 8 2
11 2 3
11 3 7
2 5 8
10 4 7
3 6 7
6 7 4
6 4 9];
V2 = [ -0.7071 -0.7071 0
0.7071 -0.7071 0
0.7071 0.7071 0
-0.7071 0.7071 0
0.0000 0 -1.0000
0.0000 0 1.0000];
F2 = [ 1 2 5
2 3 5
3 4 5
4 1 5
1 2 6
2 3 6
3 4 6
4 1 6];