gs-bim-air 0.0.3-0.20 → 0.0.3-0.21
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/READMEBETA.md +9 -6
- package/lib/BimAir.common-report.html +2 -2
- package/lib/BimAir.common.js +12 -12
- package/lib/BimAir.css +123 -122
- package/lib/BimAir.umd-report.html +2 -2
- package/lib/BimAir.umd.js +12 -12
- package/lib/BimAir.umd.min-report.html +2 -2
- package/lib/BimAir.umd.min.js +12 -12
- package/package.json +1 -1
package/READMEBETA.md
CHANGED
|
@@ -200,12 +200,6 @@ this.viewer.addAdits("钻孔组模型", data).then(aditObjects => {
|
|
|
200
200
|
### 0.0.30.18
|
|
201
201
|
|
|
202
202
|
- 修复钻孔和平硐方向相反问题
|
|
203
|
-
- 添加投影方式设置
|
|
204
|
-
|
|
205
|
-
```js
|
|
206
|
-
viewer.updateType = BimAir.Longan.UpdateType.Synchronization; //正交投影
|
|
207
|
-
viewer.updateType = BimAir.Longan.UpdateType.Asynchronization; //透视投影
|
|
208
|
-
```
|
|
209
203
|
|
|
210
204
|
### 0.0.30.19
|
|
211
205
|
|
|
@@ -215,6 +209,15 @@ viewer.updateType = BimAir.Longan.UpdateType.Asynchronization; //透视投影
|
|
|
215
209
|
|
|
216
210
|
- 处理平硐数据路径第一个数据没有 no 的问题
|
|
217
211
|
|
|
212
|
+
### 0.0.30.21
|
|
213
|
+
|
|
214
|
+
- 修改投影方式设置
|
|
215
|
+
|
|
216
|
+
```js
|
|
217
|
+
viewer.camera.projection = BimAir.Longan.ProjectionType.Orthographic; //正交投影
|
|
218
|
+
viewer.camera.projection = BimAir.Longan.ProjectionType.Perspective; //透视投影
|
|
219
|
+
```
|
|
220
|
+
|
|
218
221
|
## BETA2 日志
|
|
219
222
|
|
|
220
223
|
### 0.1.30.1
|