forked from mrdoob/three.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUVsUtils.js
92 lines (69 loc) · 2.17 KB
/
UVsUtils.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
/*
* @author https://github.com/zz85 | @blurspline
*
* tool for "unwrapping" and debugging three.js
* geometries UV mapping
*
* Sample usage:
* document.body.appendChild(
* THREE.UVsDebug(
* new THREE.SphereGeometry(10,10,10,10));
*
*/
THREE.UVsDebug = function(geometry) {
var verts = geometry.vertices,
faces = geometry.faces,
uvs = geometry.faceVertexUvs[0];
console.log('debugging geometry', geometry);
var canvas = document.createElement('canvas');
var width = 1024;
var height = 1024;
canvas.width = width;
canvas.height = height;
var ctx = canvas.getContext('2d');
ctx.lineWidth = 1;
ctx.strokeStyle = 'rgba(0,0,0,0.8)';
// paint background white
ctx.fillStyle = 'rgba(255,255,255, 1.0)';
ctx.fillRect(0, 0, width, height);
var abc = 'abcd';
var uv, u, ax, ay;
var i, il, j, jl;
var a = new THREE.Vector2();
var b = new THREE.Vector2();
for (i = 0, il = uvs.length; i < il; i++) {
uv = uvs[i];
// draw lines
ctx.beginPath();
a.set(0, 0);
for (j = 0, jl = uv.length; j < jl; j++) {
u = uv[j];
a.x += u.u;
a.y += u.v;
if (j == 0) {
ctx.moveTo(u.u * width, u.v * height);
} else {
ctx.lineTo(u.u * width, u.v * height);
}
}
ctx.closePath();
ctx.stroke();
a.divideScalar(jl);
// label the face number
ctx.font = "12pt Arial bold";
ctx.fillStyle = 'rgba(0,0,0,0.8)';
ctx.fillText(i, a.x * width, a.y * height);
ctx.font = "8pt Arial bold";
ctx.fillStyle = 'rgba(30,30,0,0.8)';
// label uv edge orders
for (j = 0, jl = uv.length; j < jl; j++) {
u = uv[j];
b.set(u.u, u.v).subSelf(a).divideScalar(4);
b.x = u.u - b.x;
b.y = u.v - b.y;
ctx.fillText(abc[j]
+ ':' + faces[i][abc[j]], b.x * width, b.y * height);
}
}
return canvas;
}