rm-gxf-computing-rusts 0.0.45 → 0.0.46
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 -0
- package/src/index.js +1 -0
- package/src/main.js +2 -0
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
package/src/index.d.ts
CHANGED
|
@@ -6,6 +6,12 @@ export declare class SquareBackfacePointCloudTest {
|
|
|
6
6
|
compute(): Array<number>
|
|
7
7
|
}
|
|
8
8
|
|
|
9
|
+
export declare class SquareHasObjectInFront {
|
|
10
|
+
constructor(option: HasObjectInFrontOptions)
|
|
11
|
+
push(data: ArgumentLine2): void
|
|
12
|
+
compute(): Array<number>
|
|
13
|
+
}
|
|
14
|
+
|
|
9
15
|
export interface ArgumentBox3 {
|
|
10
16
|
min: Vector3F64
|
|
11
17
|
max: Vector3F64
|
package/src/index.js
CHANGED
|
@@ -588,6 +588,7 @@ if (!nativeBinding) {
|
|
|
588
588
|
|
|
589
589
|
module.exports = nativeBinding
|
|
590
590
|
module.exports.SquareBackfacePointCloudTest = nativeBinding.SquareBackfacePointCloudTest
|
|
591
|
+
module.exports.SquareHasObjectInFront = nativeBinding.SquareHasObjectInFront
|
|
591
592
|
module.exports.checkLineSideVisibility = nativeBinding.checkLineSideVisibility
|
|
592
593
|
module.exports.modelPreview = nativeBinding.modelPreview
|
|
593
594
|
module.exports.samplePointsByImage = nativeBinding.samplePointsByImage
|
package/src/main.js
CHANGED
|
@@ -185,3 +185,5 @@ module.exports.samplePointsByImage = samplePointsByImage
|
|
|
185
185
|
module.exports.modelPreview = modelPreview
|
|
186
186
|
module.exports.squareHasObjectInFront = gxf.squareHasObjectInFront
|
|
187
187
|
module.exports.SquareBackfacePointCloudTest = gxf.SquareBackfacePointCloudTest
|
|
188
|
+
module.exports.SquareHasObjectInFront = gxf.SquareHasObjectInFront
|
|
189
|
+
|