rm-gxf-computing-rusts 0.0.36 → 0.0.37

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rm-gxf-computing-rusts",
3
- "version": "0.0.36",
3
+ "version": "0.0.37",
4
4
  "description": "",
5
5
  "author": "初秋",
6
6
  "type": "commonjs",
Binary file
Binary file
package/src/index.d.ts CHANGED
@@ -5,6 +5,11 @@ export interface ArgumentBox3 {
5
5
  max: Vector3F64
6
6
  }
7
7
 
8
+ export interface ArgumentBox3 {
9
+ min: Vector3F64
10
+ max: Vector3F64
11
+ }
12
+
8
13
  export interface ArgumentBoxInfo {
9
14
  box3: ArgumentBox3
10
15
  positionArr: Array<Vector3F64>
@@ -24,6 +29,22 @@ export interface ArgumentLine {
24
29
  objPositionArr?: Array<Array<number>>
25
30
  }
26
31
 
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
+
27
48
  export interface ArgumentLine2 {
28
49
  start?: Vector3F64
29
50
  end?: Vector3F64
@@ -82,6 +103,10 @@ export interface Index {
82
103
  index: number
83
104
  }
84
105
 
106
+ export interface Index {
107
+ index: number
108
+ }
109
+
85
110
  export interface Line {
86
111
  start: Vector3F64
87
112
  end: Vector3F64