gs-bim-air 1.6.1-beta.86 → 1.6.1-beta.88

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/README.md CHANGED
@@ -1,5 +1,20 @@
1
1
  ## BIMAir 更新日志
2
2
 
3
+ ### 1.6.1-beta.88
4
+
5
+ fix: 修复找不到 JS_Set_Key_Index 的问题
6
+
7
+ ### 1.6.1-beta.87
8
+
9
+ > 更新 public/js 里的内核文件,安装此版本需替换 js 文件夹
10
+
11
+ - fix: 修复结构树拖拽报错问题,结构树拖拽后执行 updateDisplay 更新矩阵
12
+ - fix: 修复无法添加文字批注的问题
13
+ - feat: 新增点面测量;交互添加验证;
14
+ - feat: 增加线面测量;统一显示 UI、字段命名;
15
+ - feat: 新增线线测量;优化面板展示
16
+ - feat: 添加点线最小距离测量功能
17
+
3
18
  ### 1.6.1-beta.86
4
19
 
5
20
  - feat: cae 增加清除剖切接口
@@ -30,6 +30,7 @@
30
30
  - [isPerpendicular](Longan.GeometryOperators.md#isperpendicular)
31
31
  - [isPointInLineSegment](Longan.GeometryOperators.md#ispointinlinesegment)
32
32
  - [isPointInPolygonXy](Longan.GeometryOperators.md#ispointinpolygonxy)
33
+ - [isPointInTriangle](Longan.GeometryOperators.md#ispointintriangle)
33
34
  - [isPointOnPolygonXy](Longan.GeometryOperators.md#ispointonpolygonxy)
34
35
  - [lineParam](Longan.GeometryOperators.md#lineparam)
35
36
  - [lineParam1](Longan.GeometryOperators.md#lineparam1)
@@ -374,6 +375,25 @@ ___
374
375
 
375
376
  ___
376
377
 
378
+ ### isPointInTriangle
379
+
380
+ ▸ `Static` **isPointInTriangle**(`point`, `tri_one`, `tri_two`, `tri_three`): `boolean`
381
+
382
+ #### Parameters
383
+
384
+ | Name | Type |
385
+ | :------ | :------ |
386
+ | `point` | `Float32Array` |
387
+ | `tri_one` | `Float32Array` |
388
+ | `tri_two` | `Float32Array` |
389
+ | `tri_three` | `Float32Array` |
390
+
391
+ #### Returns
392
+
393
+ `boolean`
394
+
395
+ ___
396
+
377
397
  ### isPointOnPolygonXy
378
398
 
379
399
  ▸ `Static` **isPointOnPolygonXy**(`point`, `polygon_points`, `polygon_indexes`): `boolean`