@realsee/dnalogel 3.48.5 → 3.48.6
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 +4 -0
- package/dist/PanoMeasurePlugin/utils/isIntersecting.d.ts +1 -1
- package/dist/Sculpt/Meshes/Line.d.ts +1 -0
- package/dist/Sculpt/Meshes/PolygonWithEdge.d.ts +1 -1
- package/dist/Sculpt/Meshes/Polyline.d.ts +2 -0
- package/dist/Sculpt/Meshes/RectangleWithEdge.d.ts +1 -1
- package/dist/index.cjs.js +47 -47
- package/dist/index.js +2039 -1965
- package/dist/index.umd.js +41 -41
- package/dist/shared-utils/three/PointSelector/index.d.ts +12 -4
- package/dist/shared-utils/three/PointSelector/utils/contents.d.ts +1 -0
- package/dist/shared-utils/three/generatePolygonGeometry.d.ts +4 -1
- package/libs/ModelMakerPlugin/Controller.js +3 -2
- package/libs/ModelMakerPlugin/index.js +3 -2
- package/libs/PanoMeasurePlugin/Components/Controller0.js +21 -20
- package/libs/PanoMeasurePlugin/Components/Controller1.js +4 -3
- package/libs/PanoMeasurePlugin/Controller/EditController.js +4 -3
- package/libs/PanoMeasurePlugin/Controller/WatchController.js +3 -2
- package/libs/PanoMeasurePlugin/Controller/index.js +4 -3
- package/libs/PanoMeasurePlugin/Model/area.js +3 -2
- package/libs/PanoMeasurePlugin/Model/polygon.js +8 -7
- package/libs/PanoMeasurePlugin/Modules/UIController/index.js +4 -3
- package/libs/PanoMeasurePlugin/index.js +15 -14
- package/libs/PanoMeasurePlugin/utils/isIntersecting.d.ts +1 -1
- package/libs/PanoMeasurePlugin/utils/isIntersecting.js +39 -16
- package/libs/Sculpt/Meshes/Line.d.ts +1 -0
- package/libs/Sculpt/Meshes/Line.js +64 -56
- package/libs/Sculpt/Meshes/Polygon.js +3 -3
- package/libs/Sculpt/Meshes/PolygonWithEdge.d.ts +1 -1
- package/libs/Sculpt/Meshes/Polyline.d.ts +2 -0
- package/libs/Sculpt/Meshes/Polyline.js +67 -66
- package/libs/Sculpt/Meshes/RectangleWithEdge.d.ts +1 -1
- package/libs/Sculpt/Objects/Polygon/index.js +63 -64
- package/libs/Sculpt/Objects/Polyline/index.js +8 -9
- package/libs/base/BasePlugin.js +1 -1
- package/libs/index.js +127 -126
- package/libs/shared-utils/logger.js +1 -1
- package/libs/shared-utils/three/PointSelector/index.d.ts +12 -4
- package/libs/shared-utils/three/PointSelector/index.js +83 -56
- package/libs/shared-utils/three/PointSelector/utils/contents.d.ts +1 -0
- package/libs/shared-utils/three/PointSelector/utils/contents.js +4 -0
- package/libs/shared-utils/three/generatePolygonGeometry.d.ts +4 -1
- package/libs/shared-utils/three/generatePolygonGeometry.js +19 -8
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -11,5 +11,5 @@ interface Line3D {
|
|
|
11
11
|
* @description 判断线段是否相交
|
|
12
12
|
* @todo ai写的一些变量名起的比较怪,懒得改了
|
|
13
13
|
*/
|
|
14
|
-
export
|
|
14
|
+
export declare function isIntersecting(line1: Line3D, line2: Line3D | Line3D[]): boolean;
|
|
15
15
|
export {};
|
|
@@ -20,7 +20,7 @@ export declare class PolygonWithEdgeMesh extends PolygonMesh {
|
|
|
20
20
|
};
|
|
21
21
|
get lineWidth(): number;
|
|
22
22
|
get lineColor(): THREE.Color;
|
|
23
|
-
|
|
23
|
+
line: PolylineMesh;
|
|
24
24
|
constructor(params?: Partial<PolygonWithEdgeMeshStyle & PolygonData>);
|
|
25
25
|
raycast(raycaster: THREE.Raycaster, intersects: THREE.Intersection[]): boolean;
|
|
26
26
|
setPoints(points: AnyPositions, params?: {
|
|
@@ -11,11 +11,13 @@ export declare abstract class PolylineBaseMesh extends IObject3D {
|
|
|
11
11
|
get style(): {
|
|
12
12
|
lineColor: THREE.Color;
|
|
13
13
|
lineWidth: number;
|
|
14
|
+
opacity: number;
|
|
14
15
|
dashed: boolean;
|
|
15
16
|
occlusionVisibility: boolean;
|
|
16
17
|
occlusionMode: "translucence" | "depthTest";
|
|
17
18
|
lengthEnable: boolean;
|
|
18
19
|
};
|
|
20
|
+
get opacity(): number;
|
|
19
21
|
get lineColor(): THREE.Color;
|
|
20
22
|
get lineWidth(): number;
|
|
21
23
|
get dashed(): boolean;
|
|
@@ -11,12 +11,12 @@ export declare class RectangleWithEdgeMesh extends RectangleMesh {
|
|
|
11
11
|
get style(): {
|
|
12
12
|
lineColor: import("three").Color;
|
|
13
13
|
lineWidth: number;
|
|
14
|
+
opacity: number;
|
|
14
15
|
dashed: boolean;
|
|
15
16
|
occlusionVisibility: boolean;
|
|
16
17
|
occlusionMode: "translucence" | "depthTest";
|
|
17
18
|
lengthEnable: boolean;
|
|
18
19
|
color: import("three").Color;
|
|
19
|
-
opacity: number;
|
|
20
20
|
};
|
|
21
21
|
get lineWidth(): number;
|
|
22
22
|
get lineColor(): import("three").Color;
|