@realsee/dnalogel 3.72.5-alpha.2 → 3.72.5-alpha.4
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/PanoTagPlugin/controller/Tag/PointTag.d.ts +1 -0
- package/dist/Sculpt/Objects/Polygon/index.d.ts +5 -0
- package/dist/index.cjs.js +31 -31
- package/dist/index.js +893 -882
- package/dist/index.umd.js +31 -31
- package/libs/PanoTagPlugin/controller/Tag/BaseTag.js +39 -39
- package/libs/PanoTagPlugin/controller/Tag/PointTag.d.ts +1 -0
- package/libs/PanoTagPlugin/controller/Tag/PointTag.js +83 -76
- package/libs/PanoTagPlugin/controller/index.js +1 -1
- package/libs/Sculpt/Objects/Polygon/index.d.ts +5 -0
- package/libs/Sculpt/Objects/Polygon/index.js +59 -55
- package/libs/base/BasePlugin.js +1 -1
- package/libs/shared-utils/logger.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -38,6 +38,7 @@ export declare class PointTag<C extends TagContentType = TagContentType> extends
|
|
|
38
38
|
setData(...data: Parameters<InstanceType<typeof BaseTag<C, '2DPoint' | '3DPoint'>>['setData']>): void;
|
|
39
39
|
updateUnfoldedByPanoIndex(): void;
|
|
40
40
|
computeNormal(): THREE.Vector3;
|
|
41
|
+
removeTagNormalLine(): void;
|
|
41
42
|
/**
|
|
42
43
|
* @description 获取额外的闪烁目标,包括法线(如果有)
|
|
43
44
|
*/
|
|
@@ -14,6 +14,11 @@ export type PolygonCreateConfig = Partial<PolygonStyle & CreateLimitConfig & Pol
|
|
|
14
14
|
onPointPlaced?: (points: THREE.Vector3[]) => void;
|
|
15
15
|
onUndo?: () => void;
|
|
16
16
|
onRedo?: () => void;
|
|
17
|
+
/**
|
|
18
|
+
* @description 检测是否自相交,如果自交,禁止添加下一个点
|
|
19
|
+
* @default false
|
|
20
|
+
*/
|
|
21
|
+
experimental_self_intersect_check?: boolean;
|
|
17
22
|
};
|
|
18
23
|
export declare class Polygon extends BaseObject<PolygonImportData> {
|
|
19
24
|
readonly type = "Polygon";
|