rm-gxf-computing-rusts 0.0.34 → 0.0.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/gfx.linux-x64-gnu.node +0 -0
- package/src/index.d.ts +0 -84
package/package.json
CHANGED
|
Binary file
|
package/src/index.d.ts
CHANGED
|
@@ -5,11 +5,6 @@ export interface ArgumentBox3 {
|
|
|
5
5
|
max: Vector3F64
|
|
6
6
|
}
|
|
7
7
|
|
|
8
|
-
export interface ArgumentBox3 {
|
|
9
|
-
min: Vector3F64
|
|
10
|
-
max: Vector3F64
|
|
11
|
-
}
|
|
12
|
-
|
|
13
8
|
export interface ArgumentBoxInfo {
|
|
14
9
|
box3: ArgumentBox3
|
|
15
10
|
positionArr: Array<Vector3F64>
|
|
@@ -29,22 +24,6 @@ export interface ArgumentLine {
|
|
|
29
24
|
objPositionArr?: Array<Array<number>>
|
|
30
25
|
}
|
|
31
26
|
|
|
32
|
-
export interface ArgumentLine {
|
|
33
|
-
start?: Vector3F64
|
|
34
|
-
end?: Vector3F64
|
|
35
|
-
missingCheckResults: Array<Quads>
|
|
36
|
-
existSegments: Array<Quads>
|
|
37
|
-
intersectionSegments?: Array<Array<Index>>
|
|
38
|
-
objPositionArr?: Array<Array<number>>
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
export interface ArgumentLine2 {
|
|
42
|
-
start?: Vector3F64
|
|
43
|
-
end?: Vector3F64
|
|
44
|
-
checkResults: Array<Quads>
|
|
45
|
-
existSegments: Array<Quads>
|
|
46
|
-
}
|
|
47
|
-
|
|
48
27
|
export interface ArgumentLine2 {
|
|
49
28
|
start?: Vector3F64
|
|
50
29
|
end?: Vector3F64
|
|
@@ -61,19 +40,6 @@ export interface CheckLineSideVisibilityOption {
|
|
|
61
40
|
trajectorys: Record<string, Vector3F64>
|
|
62
41
|
}
|
|
63
42
|
|
|
64
|
-
export interface CheckLineSideVisibilityOption {
|
|
65
|
-
view?: boolean
|
|
66
|
-
pcdDir: string
|
|
67
|
-
lines: Array<Line>
|
|
68
|
-
trajectorys: Record<string, Vector3F64>
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
export interface CheckResult {
|
|
72
|
-
originalVertices: Array<Square>
|
|
73
|
-
allCenterPoints: Array<Point>
|
|
74
|
-
offsets?: Array<number>
|
|
75
|
-
}
|
|
76
|
-
|
|
77
43
|
export interface CheckResult {
|
|
78
44
|
originalVertices: Array<Square>
|
|
79
45
|
allCenterPoints: Array<Point>
|
|
@@ -116,20 +82,6 @@ export interface Index {
|
|
|
116
82
|
index: number
|
|
117
83
|
}
|
|
118
84
|
|
|
119
|
-
export interface Index {
|
|
120
|
-
index: number
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
export interface Line {
|
|
124
|
-
start: Vector3F64
|
|
125
|
-
end: Vector3F64
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
export interface Line {
|
|
129
|
-
start: Vector3F64
|
|
130
|
-
end: Vector3F64
|
|
131
|
-
}
|
|
132
|
-
|
|
133
85
|
export interface Line {
|
|
134
86
|
start: Vector3F64
|
|
135
87
|
end: Vector3F64
|
|
@@ -146,12 +98,6 @@ export interface LineData {
|
|
|
146
98
|
checkResults: Array<CheckResult>
|
|
147
99
|
}
|
|
148
100
|
|
|
149
|
-
export interface LineData {
|
|
150
|
-
start: Vector3F64
|
|
151
|
-
end: Vector3F64
|
|
152
|
-
checkResults: Array<CheckResult>
|
|
153
|
-
}
|
|
154
|
-
|
|
155
101
|
export declare function modelPreview(option: Parameter): ModelPreviewResults
|
|
156
102
|
|
|
157
103
|
export interface ModelPreviewResults {
|
|
@@ -190,19 +136,6 @@ export interface PcBackfaceTestOptions {
|
|
|
190
136
|
distProjection: boolean
|
|
191
137
|
}
|
|
192
138
|
|
|
193
|
-
export interface PcBackfaceTestOptions {
|
|
194
|
-
view?: boolean
|
|
195
|
-
pcdDir: string
|
|
196
|
-
lines: LineDataList
|
|
197
|
-
trajectorys: Record<string, Trajectory>
|
|
198
|
-
distProjection: boolean
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
export interface Quads {
|
|
202
|
-
originalVertices: Array<Array<Vector3F64>>
|
|
203
|
-
allCenterPoints: Array<Vector3F64>
|
|
204
|
-
}
|
|
205
|
-
|
|
206
139
|
export interface Quads {
|
|
207
140
|
originalVertices: Array<Array<Vector3F64>>
|
|
208
141
|
allCenterPoints: Array<Vector3F64>
|
|
@@ -290,23 +223,6 @@ export interface Trajectory {
|
|
|
290
223
|
qw: number
|
|
291
224
|
}
|
|
292
225
|
|
|
293
|
-
export interface Trajectory {
|
|
294
|
-
x: number
|
|
295
|
-
y: number
|
|
296
|
-
z: number
|
|
297
|
-
qx: number
|
|
298
|
-
qy: number
|
|
299
|
-
qz: number
|
|
300
|
-
qw: number
|
|
301
|
-
}
|
|
302
|
-
|
|
303
|
-
/** 三维向量,包含 x、y、z 分量 */
|
|
304
|
-
export interface Vector3F64 {
|
|
305
|
-
x: number
|
|
306
|
-
y: number
|
|
307
|
-
z: number
|
|
308
|
-
}
|
|
309
|
-
|
|
310
226
|
/** 三维向量,包含 x、y、z 分量 */
|
|
311
227
|
export interface Vector3F64 {
|
|
312
228
|
x: number
|