-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgeometry.mjs
67 lines (64 loc) · 1.23 KB
/
geometry.mjs
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
/**
* Create a square (2 triangles)
*
* @name square
* @param {number} size
*/
export function square(size = 1) {
const s = size * .5;
return [
-s, -s, 0,
s, -s, 0,
-s, s, 0,
-s, s, 0,
s, -s, 0,
s, s, 0];
}
/**
* Create a box with the sizes a * b * c,
* centered at (0, 0, 0), 2 triangles per side.
*
* @name box
* @param {number} sizeA
* @param {number} sizeB
* @param {number} sizeC
*/
export function box(sizeA = 1.0, sizeB = 1.0, sizeC = 1.0) {
const a = sizeA * .5;
const b = sizeB * .5;
const c = sizeC * .5;
const vertices = [
[-a, -b, -c],
[ a, -b, -c],
[-a, b, -c],
[ a, b, -c],
[-a, -b, c],
[ a, -b, c],
[-a, b, c],
[ a, b, c]
];
// 0______1
// 4/|____5/|
// |2|____|_|3
// |/ ____|/
// 6 7
const faces = [
// back
[0, 2, 1], [2, 3, 1],
// front
[5, 7, 4], [7, 6, 4],
// left
[4, 6, 0], [6, 2, 0],
// right
[7, 5, 1], [1, 3, 7],
// top
[1, 5, 0], [5, 4, 0],
// bottom
[2, 6, 3], [6, 7, 3]
];
const result = faces.flat().map(vertexIndex => vertices[vertexIndex]).flat();
return result;
}
export function cube(size = 1.0) {
return box(size, size, size);
}