forked from cocos/cocos-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransform.ts
154 lines (141 loc) · 4.94 KB
/
transform.ts
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
/*
Copyright (c) 2020-2023 Xiamen Yaji Software Co., Ltd.
https://www.cocos.com/
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
import { PrimitiveMode } from '../gfx';
import { IGeometry } from './define';
/**
* @en
* Translate the geometry.
* @zh
* 平移几何体。
* @param geometry @zh 几何体信息。@en The geometry to be translated
* @param offset @zh 偏移量。@en The translation
*/
export function translate (geometry: IGeometry, offset: { x?: number; y?: number; z?: number; }): IGeometry {
const x = offset.x || 0;
const y = offset.y || 0;
const z = offset.z || 0;
const nVertex = Math.floor(geometry.positions.length / 3);
for (let iVertex = 0; iVertex < nVertex; ++iVertex) {
const iX = iVertex * 3;
const iY = iVertex * 3 + 1;
const iZ = iVertex * 3 + 2;
geometry.positions[iX] += x;
geometry.positions[iY] += y;
geometry.positions[iZ] += z;
}
if (geometry.minPos) {
geometry.minPos.x += x;
geometry.minPos.y += y;
geometry.minPos.z += z;
}
if (geometry.maxPos) {
geometry.maxPos.x += x;
geometry.maxPos.y += y;
geometry.maxPos.z += z;
}
return geometry;
}
/**
* @en
* Scale the geometry.
* @zh
* 缩放几何体。
* @param geometry @zh 几何体信息。 @en The geometry to be scaled
* @param value @zh 缩放量。@en The scaling size
*/
export function scale (geometry: IGeometry, value: { x?: number; y?: number; z?: number }): IGeometry {
const x = value.x ?? 1.0;
const y = value.y ?? 1.0;
const z = value.z ?? 1.0;
const nVertex = Math.floor(geometry.positions.length / 3);
for (let iVertex = 0; iVertex < nVertex; ++iVertex) {
const iX = iVertex * 3;
const iY = iVertex * 3 + 1;
const iZ = iVertex * 3 + 2;
geometry.positions[iX] *= x;
geometry.positions[iY] *= y;
geometry.positions[iZ] *= z;
}
const {
minPos,
maxPos,
} = geometry;
if (minPos) {
minPos.x *= x;
minPos.y *= y;
minPos.z *= z;
}
if (maxPos) {
maxPos.x *= x;
maxPos.y *= y;
maxPos.z *= z;
}
if (minPos && maxPos) {
// Negative scaling causes min-max to be swapped.
if (x < 0) {
const tmp = minPos.x; minPos.x = maxPos.x; maxPos.x = tmp;
}
if (y < 0) {
const tmp = minPos.y; minPos.y = maxPos.y; maxPos.y = tmp;
}
if (z < 0) {
const tmp = minPos.z; minPos.z = maxPos.z; maxPos.z = tmp;
}
}
if (typeof geometry.boundingRadius !== 'undefined') {
geometry.boundingRadius *= Math.max(Math.max(Math.abs(x), Math.abs(y)), Math.abs(z));
}
return geometry;
}
/**
* @en
* Converts geometry to wireframe mode. Only geometry with triangle topology is supported.
* @zh
* 将几何体转换为线框模式,仅支持三角形拓扑的几何体。
* @param geometry @zh 几何体信息。@en The geometry to be converted to wireframe
*/
export function wireframed (geometry: IGeometry): IGeometry {
const { indices } = geometry;
if (!indices) {
return geometry;
}
// We only support triangles' wireframe.
if (geometry.primitiveMode && geometry.primitiveMode !== PrimitiveMode.TRIANGLE_LIST) {
return geometry;
}
const offsets = [[0, 1], [1, 2], [2, 0]];
const lines: number[] = [];
const lineIDs = {};
for (let i = 0; i < indices.length; i += 3) {
for (let k = 0; k < 3; ++k) {
const i1 = indices[i + offsets[k][0]];
const i2 = indices[i + offsets[k][1]];
// check if we already have the line in our lines
const id = (i1 > i2) ? ((i2 << 16) | i1) : ((i1 << 16) | i2);
if (lineIDs[id] === undefined) {
lineIDs[id] = 0;
lines.push(i1, i2);
}
}
}
geometry.indices = lines;
geometry.primitiveMode = PrimitiveMode.LINE_LIST;
return geometry;
}