@realsee/dnalogel 3.50.4 → 3.50.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 +6 -0
- package/dist/Sculpt/Meshes/Point.d.ts +6 -0
- package/dist/Sculpt/utils/Meshes/getLengthHTML.d.ts +3 -1
- package/dist/index.cjs.js +24 -24
- package/dist/index.js +919 -903
- package/dist/index.umd.js +14 -14
- package/libs/PanoMeasurePlugin/Controller/index.js +1 -1
- package/libs/Sculpt/Meshes/Line.js +33 -30
- package/libs/Sculpt/Meshes/Point.d.ts +6 -0
- package/libs/Sculpt/Meshes/Point.js +49 -38
- package/libs/Sculpt/Meshes/Polygon.js +46 -36
- package/libs/Sculpt/utils/Meshes/getLengthHTML.d.ts +3 -1
- package/libs/Sculpt/utils/Meshes/getLengthHTML.js +3 -3
- package/libs/base/BasePlugin.js +1 -1
- package/libs/shared-utils/logger.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -12,6 +12,12 @@ export declare class PointMesh extends IObject3D {
|
|
|
12
12
|
name: string;
|
|
13
13
|
get color(): THREE.Color;
|
|
14
14
|
get size(): number;
|
|
15
|
+
get style(): {
|
|
16
|
+
color: THREE.Color;
|
|
17
|
+
size: number;
|
|
18
|
+
occlusionVisibility: boolean;
|
|
19
|
+
occlusionMode: string;
|
|
20
|
+
};
|
|
15
21
|
dom: LightTag;
|
|
16
22
|
private opacityBeforeHighlight;
|
|
17
23
|
private highlighted;
|