-
Notifications
You must be signed in to change notification settings - Fork 289
/
Copy pathoctree.js
222 lines (167 loc) · 5.05 KB
/
octree.js
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
import * as vec from "math/vec";
export class Node {
constructor() {
this.nodes = null;
this.tag = 0;
this.normal = null;
}
get leaf() {
return this.nodes == null;
}
breakDown() {
if (this.nodes) {
console.error("attempt of breaking down not a leaf node")
this.makeLeaf();
}
this.nodes = [new Node(), new Node(), new Node(), new Node(), new Node(), new Node(), new Node(), new Node()];
this.nodes.forEach(n => n.tag = this.tag);
}
makeLeaf() {
if (this.nodes) {
this.nodes.forEach(n => n.dispose());
this.nodes = null;
}
}
dispose() {}
}
export const directors = [
[0,0,0], [1,0,0], [0,1,0], [1,1,0],
[0,0,1], [1,0,1], [0,1,1], [1,1,1]
];
export class NDTree {
constructor(size) {
this.root = new Node();
this.size = size;
if (this.size % 2 !== 0) {
throw 'size of nd tree must be power of two'
}
this.dimension = 3;
this.directors = directors;
this.nodesCount = Math.pow(2, this.dimension);
}
traverse(handler) {
traverseOctree(this.root, this.size, handler);
}
defragment() {
function defrg(node, x,y,z, size) {
if (node.leaf) {
return;
}
const subSize = size / 2;
let allChildrenLeafsSameKind = true;
for (let i = 0; i < 8; i ++) {
const subNode = node.nodes[i];
if (subNode) {
const [dx, dy, dz] = directors[i];
defrg(subNode, x + dx*subSize, y + dy*subSize, z + dz*subSize, subSize)
if (!subNode.leaf || subNode.tag !== node.tag) {
allChildrenLeafsSameKind = false;
}
}
}
if (allChildrenLeafsSameKind) {
node.makeLeaf();
}
}
defrg(this.root, 0,0,0, this.size);
}
}
export function traverseOctree(root, baseSize, handler) {
const stack = [];
stack.push([root, [0,0,0], baseSize]);
while (stack.length !== 0) {
const [node, [x,y,z], size] = stack.pop();
if (node.leaf) {
handler(x, y, z, size, node.tag, node);
continue;
}
const subSize = size / 2;
for (let i = 0; i < 8; i ++) {
const subNode = node.nodes[i];
if (subNode) {
const [dx, dy, dz] = directors[i];
const subLocation = [x + dx*subSize, y + dy*subSize, z + dz*subSize];
stack.push([subNode, subLocation, subSize]);
}
}
}
}
export function generateVoxelShape(root, baseSize, classify) {
const stack = [];
stack.push([root, [0,0,0], baseSize]);
while (stack.length !== 0) {
const [node, [x,y,z], size] = stack.pop();
node.size = size; // todo remove, debug
node.xyz = [x,y,z]; // todo remove, debug
node.tag = classify(x, y, z, size);
if (size === 1 || node.tag !== 'edge') {
continue;
}
node.breakDown();
const subSize = size / 2;
for (let i = 0; i < 8; i ++) {
const [dx, dy, dz] = directors[i];
const subLocation = [x + dx*subSize, y + dy*subSize, z + dz*subSize];
const subNode = node.nodes[i];
stack.push([subNode, subLocation, subSize]);
}
}
}
export function pushVoxel(root, baseSize, [vx, vy, vz], tag, normal, semantic) {
const stack = [];
stack.push([root, [0,0,0], baseSize]);
while (stack.length !== 0) {
const [node, [x,y,z], size] = stack.pop();
if (size === 1 && x === vx && y === vy && z === vz) {
node.tag = tag;
node.normal = normal;
return;
}
if (size === 1) {
continue;
}
if (node.leaf) {
node.breakDown();
}
const subSize = size / 2;
for (let i = 0; i < 8; i ++) {
const [dx, dy, dz] = directors[i];
const subLocation = [x + dx*subSize, y + dy*subSize, z + dz*subSize];
const [sx1, sy1, sz1] = subLocation;
const [sx2, sy2, sz2] = subLocation.map(v => v + subSize);
if (vx >= sx1 && vy >= sy1 && vz >= sz1 && vx < sx2 && vy < sy2 && vz < sz2) {
const subNode = node.nodes[i];
stack.push([subNode, subLocation, subSize]);
}
}
}
}
export function createOctreeFromSurface(origin, sceneSize, treeSize, surface, tag) {
const root = new Node();
const stack = [];
const [uOMin, uOMax] = surface.domainU;
const [vOMin, vOMax] = surface.domainV;
stack.push([[uOMin, vOMin], [uOMax, vOMax]]);
const resolution = sceneSize / treeSize;
const rSq = resolution * resolution;
while (stack.length !== 0) {
const [[uMin, vMin], [uMax, vMax]] = stack.pop();
const pMin = surface.point(uMin, vMin);
const pMax = surface.point(uMax, vMax);
if (vec.distanceSq(pMin, pMax) < rSq) {
const voxel = vec.sub(pMin, origin);
vec._div(voxel, resolution);
vec.scalarOperand(voxel, voxel, v => Math.floor(v));
const normal = surface.normal(uMin, vMin);
pushVoxel(root, treeSize, voxel, tag, normal);
} else {
const uMid = uMin + (uMax - uMin) / 2;
const vMid = vMin + (vMax - vMin) / 2;
stack.push([[uMin, vMin], [uMid, vMid]]);
stack.push([[uMid, vMin], [uMax, vMid]]);
stack.push([[uMid, vMid], [uMax, vMax]]);
stack.push([[uMin, vMid], [uMid, vMax]]);
}
}
return root;
}