@realsee/dnalogel 3.48.7 → 3.49.0
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/CHANGELOG.md +6 -2
- package/dist/Sculpt/Meshes/Prism.d.ts +1 -0
- package/dist/index.cjs.js +30 -30
- package/dist/index.js +58 -62
- package/dist/index.umd.js +30 -30
- package/dist/shared-utils/Object3DHelper/Controller/RotateController.d.ts +0 -1
- package/dist/shared-utils/Object3DHelper/Controller/ScaleController.d.ts +1 -1
- package/dist/shared-utils/three/PointSelector/index.d.ts +2 -1
- package/dist/shared-utils/three/generatePolygonGeometry.d.ts +1 -1
- package/libs/Sculpt/Meshes/Prism.d.ts +1 -0
- package/libs/Sculpt/Meshes/Prism.js +47 -37
- package/libs/Sculpt/utils/Modules/Global.js +1 -1
- package/libs/base/BasePlugin.js +1 -1
- package/libs/shared-utils/Object3DHelper/Controller/MoveController.js +57 -57
- package/libs/shared-utils/Object3DHelper/Controller/RotateController.d.ts +0 -1
- package/libs/shared-utils/Object3DHelper/Controller/RotateController.js +91 -97
- package/libs/shared-utils/Object3DHelper/Controller/ScaleController.d.ts +1 -1
- package/libs/shared-utils/Object3DHelper/Controller/ScaleController.js +34 -31
- package/libs/shared-utils/logger.js +1 -1
- package/libs/shared-utils/three/PointSelector/index.d.ts +2 -1
- package/libs/shared-utils/three/generatePolygonGeometry.d.ts +1 -1
- package/libs/shared-utils/three/generatePolygonGeometry.js +8 -10
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
|
+
## 3.49.0
|
|
3
|
+
- feat(ObjectHelper): 支持触摸屏手势操作。
|
|
4
|
+
- feat(Sculpt): 支持触摸屏手势操作。
|
|
5
|
+
|
|
2
6
|
## 3.48.7
|
|
3
|
-
- fix(PanoMeasurePlugin):修复 `enable({mode: 'View'})` 时
|
|
7
|
+
- fix(PanoMeasurePlugin):修复 `enable({mode: 'View'})` 时 可能会显示不应展示的标尺的问题。
|
|
4
8
|
|
|
5
9
|
## 3.48.6
|
|
6
|
-
- fix(PanoMeasurePLugin)
|
|
10
|
+
- fix(PanoMeasurePLugin):修复在未来家墙面上测量面积时,偶现无法正常绘制的问题。
|
|
7
11
|
- feat(Sculpt):优化绘制多边形时的实时预览效果。
|
|
8
12
|
|
|
9
13
|
## 3.48.5
|
|
@@ -26,6 +26,7 @@ export declare class PrismMesh extends IObject3D {
|
|
|
26
26
|
get color(): THREE.Color;
|
|
27
27
|
get lineWidth(): number;
|
|
28
28
|
get lineColor(): THREE.Color;
|
|
29
|
+
paramStyle: Partial<PrismStyle>;
|
|
29
30
|
private edgePlanes;
|
|
30
31
|
constructor(params?: Partial<PrismData & PrismStyle>);
|
|
31
32
|
setStyle(params: Partial<PrismStyle>): void;
|