rm-gxf-computing-rusts 0.0.42 → 0.0.44
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/gfx.win32-x64-msvc.node +0 -0
- package/src/index.d.ts +6 -7
- package/src/index.js +1 -0
- package/src/main.js +1 -2
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
package/src/index.d.ts
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
/* auto-generated by NAPI-RS */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
+
export declare class SquareBackfacePointCloudTest {
|
|
4
|
+
constructor(option: PcBackfaceTestOptions)
|
|
5
|
+
push(data: LineData): void
|
|
6
|
+
compute(): Array<number>
|
|
7
|
+
}
|
|
8
|
+
|
|
3
9
|
export interface ArgumentBox3 {
|
|
4
10
|
min: Vector3F64
|
|
5
11
|
max: Vector3F64
|
|
@@ -306,10 +312,3 @@ export interface Vector3F64 {
|
|
|
306
312
|
y: number
|
|
307
313
|
z: number
|
|
308
314
|
}
|
|
309
|
-
|
|
310
|
-
/** 三维向量,包含 x、y、z 分量 */
|
|
311
|
-
export interface Vector3F64 {
|
|
312
|
-
x: number
|
|
313
|
-
y: number
|
|
314
|
-
z: number
|
|
315
|
-
}
|
package/src/index.js
CHANGED
|
@@ -587,6 +587,7 @@ if (!nativeBinding) {
|
|
|
587
587
|
}
|
|
588
588
|
|
|
589
589
|
module.exports = nativeBinding
|
|
590
|
+
module.exports.SquareBackfacePointCloudTest = nativeBinding.SquareBackfacePointCloudTest
|
|
590
591
|
module.exports.checkLineSideVisibility = nativeBinding.checkLineSideVisibility
|
|
591
592
|
module.exports.modelPreview = nativeBinding.modelPreview
|
|
592
593
|
module.exports.samplePointsByImage = nativeBinding.samplePointsByImage
|
package/src/main.js
CHANGED
|
@@ -184,5 +184,4 @@ module.exports.squareHasSquareBehind = squareHasSquareBehind
|
|
|
184
184
|
module.exports.samplePointsByImage = samplePointsByImage
|
|
185
185
|
module.exports.modelPreview = modelPreview
|
|
186
186
|
module.exports.squareHasObjectInFront = gxf.squareHasObjectInFront
|
|
187
|
-
|
|
188
|
-
|
|
187
|
+
module.exports.SquareBackfacePointCloudTest = gxf.SquareBackfacePointCloudTest
|