@realsee/dnalogel 3.50.1 → 3.50.2
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/Sculpt/Meshes/Line.d.ts +1 -0
- package/dist/Sculpt/Meshes/Point.d.ts +1 -0
- package/dist/index.cjs.js +205 -205
- package/dist/index.js +4317 -4309
- package/dist/index.umd.js +195 -195
- package/libs/Sculpt/Meshes/Line.d.ts +1 -0
- package/libs/Sculpt/Meshes/Line.js +64 -58
- package/libs/Sculpt/Meshes/Point.d.ts +1 -0
- package/libs/Sculpt/Meshes/Point.js +33 -27
- package/libs/Sculpt/Objects/Line/index.js +38 -39
- package/libs/Sculpt/Objects/Point/index.js +18 -18
- package/libs/Sculpt/Objects/Polygon/index.js +21 -22
- package/libs/Sculpt/Objects/Polyline/index.js +27 -28
- package/libs/Sculpt/Objects/Rectangle/index.js +48 -49
- package/libs/base/BasePlugin.js +1 -1
- package/libs/shared-utils/logger.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -45,6 +45,7 @@ export declare class LineMesh extends IObject3D {
|
|
|
45
45
|
private opacityBeforeHighlight;
|
|
46
46
|
private paramsStyle;
|
|
47
47
|
private lastRenderDomItem;
|
|
48
|
+
private _visible;
|
|
48
49
|
constructor(params?: Partial<LineMeshStyle & LineData>);
|
|
49
50
|
updateMatrixWorld(force?: boolean): void;
|
|
50
51
|
setPoints(points: AnyPositions): void;
|
|
@@ -19,6 +19,7 @@ export declare class PointMesh extends IObject3D {
|
|
|
19
19
|
private backgroundMesh;
|
|
20
20
|
private lastRenderDomItem;
|
|
21
21
|
private paramsStyle;
|
|
22
|
+
private _visible;
|
|
22
23
|
private get five();
|
|
23
24
|
constructor(params?: Partial<PointStyle & PointData>);
|
|
24
25
|
setStyle(params: Partial<PointStyle>): void;
|