@realsee/dnalogel 3.3.4 → 3.3.5
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/dist/PanoTagPlugin/controller/TagComputer.d.ts +0 -4
- package/dist/PanoTagPlugin/controller/TagRender.d.ts +4 -0
- package/dist/index.cjs.js +45 -45
- package/dist/index.js +2821 -2789
- package/dist/index.umd.js +37 -37
- package/libs/PanoTagPlugin/Components/TagItem.js +287 -255
- package/libs/PanoTagPlugin/controller/TagComputer.d.ts +0 -4
- package/libs/PanoTagPlugin/controller/TagComputer.js +116 -135
- package/libs/PanoTagPlugin/controller/TagRender.d.ts +4 -0
- package/libs/PanoTagPlugin/controller/TagRender.js +90 -71
- package/libs/base/BasePlugin.js +1 -1
- package/libs/shared-utils/logger.js +1 -1
- package/package.json +1 -1
|
@@ -17,10 +17,6 @@ export declare abstract class TagComputer extends TagUtil {
|
|
|
17
17
|
getUnfoldedByCamera(tag: TagInstance): boolean;
|
|
18
18
|
protected setTagZIndex(tags: TagInstance[]): void;
|
|
19
19
|
protected calculateTagZIndex(tag: TagInstance): number;
|
|
20
|
-
/**
|
|
21
|
-
* @description: 一个点的标签
|
|
22
|
-
*/
|
|
23
|
-
protected setPointTagPosition(): void;
|
|
24
20
|
protected setVisible(tags?: TagInstance[]): void;
|
|
25
21
|
protected setUnfoldedByPanoIndex(): void;
|
|
26
22
|
/**
|
|
@@ -55,6 +55,10 @@ export declare abstract class TagRender extends TagComputer {
|
|
|
55
55
|
protected updateTagCss3DObjectMatrix<S extends 'Model' | 'Plane' = 'Model'>(tag: TagInstance<TagContentType, S>, model: Object3D): void;
|
|
56
56
|
/** 添加模型标签 */
|
|
57
57
|
protected addMediaModelTag(tags: Tag[]): Promise<void>;
|
|
58
|
+
/**
|
|
59
|
+
* @description: 一个点的标签
|
|
60
|
+
*/
|
|
61
|
+
protected setPointTagPosition(): void;
|
|
58
62
|
/**
|
|
59
63
|
* @description: 渲染单个点的标签
|
|
60
64
|
*/
|