@realsee/dnalogel 0.1.7-alpha.2 → 0.1.7-alpha.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.
Files changed (157) hide show
  1. package/components/ARVideoFigure/ImgBgTransparentMesh.js +2 -2
  2. package/components/GLTFView/index.d.ts +7 -1
  3. package/components/GLTFView/index.js +7 -1
  4. package/components/GlassFilters/index.js +2 -2
  5. package/components/ModelView/ModelViewController.js +6 -5
  6. package/data/81zxMaeVKLQU93OZMG.d.ts +49 -0
  7. package/data/81zxMaeVKLQU93OZMG.js +633 -0
  8. package/data/PrXel3aqGbp34JQn.js +139 -1
  9. package/data/_vLykj3NWrllMrG06.d.ts +95 -0
  10. package/data/_vLykj3NWrllMrG06.js +1 -0
  11. package/data/vLykj3NWrllMrG06.js +335 -71
  12. package/libs/gltf-viewer/Subscribe.js +2 -0
  13. package/libs/gltf-viewer/coordsToDirection.d.ts +1 -1
  14. package/libs/gltf-viewer/index.d.ts +18 -0
  15. package/libs/gltf-viewer/index.js +133 -45
  16. package/package.json +3 -3
  17. package/plugins/CSS3DRenderPlugin/components/Marker/index.js +2 -0
  18. package/plugins/CSS3DRenderPlugin/index.js +2 -2
  19. package/plugins/ModelChassisCompassPlugin/index.d.ts +1 -1
  20. package/plugins/ModelChassisCompassPlugin/index.js +2 -1
  21. package/plugins/ModelEntryDoorGuidePlugin/index.d.ts +4 -0
  22. package/plugins/ModelEntryDoorGuidePlugin/index.js +6 -1
  23. package/plugins/ModelExtrudeWallsPlugin/index.js +2 -2
  24. package/plugins/ModelRoomLabelPlugin/Controller.js +1 -0
  25. package/plugins/ModelRoomLabelPlugin/RoomLabelItem.js +5 -5
  26. package/plugins/ModelRoomLabelPlugin/RoomLabelItems.js +2 -2
  27. package/plugins/ModelRoomLabelPlugin/index.d.ts +4 -0
  28. package/plugins/ModelRoomLabelPlugin/index.js +7 -2
  29. package/plugins/ModelTVVideoPlugin/index.js +4 -2
  30. package/plugins/ModelViewPlugin/index.js +2 -2
  31. package/plugins/PanoCursorRaycasterPlugin/index.js +2 -0
  32. package/plugins/PanoMeasurePlugin/Controller/BaseController.d.ts +36 -0
  33. package/plugins/PanoMeasurePlugin/Controller/BaseController.js +105 -0
  34. package/plugins/PanoMeasurePlugin/Controller/EditController.d.ts +52 -0
  35. package/plugins/PanoMeasurePlugin/Controller/EditController.js +343 -0
  36. package/plugins/PanoMeasurePlugin/Controller/ShortcutKeyController.d.ts +12 -0
  37. package/plugins/PanoMeasurePlugin/Controller/ShortcutKeyController.js +69 -0
  38. package/plugins/PanoMeasurePlugin/Controller/WatchController.d.ts +25 -0
  39. package/plugins/PanoMeasurePlugin/Controller/WatchController.js +373 -0
  40. package/plugins/PanoMeasurePlugin/Controller/index.d.ts +61 -0
  41. package/plugins/PanoMeasurePlugin/Controller/index.js +230 -0
  42. package/plugins/PanoMeasurePlugin/Model/index.d.ts +38 -0
  43. package/plugins/PanoMeasurePlugin/Model/index.js +237 -0
  44. package/plugins/PanoMeasurePlugin/Model/line.d.ts +30 -0
  45. package/plugins/PanoMeasurePlugin/Model/line.js +123 -0
  46. package/plugins/PanoMeasurePlugin/Model/point.d.ts +16 -0
  47. package/plugins/PanoMeasurePlugin/Model/point.js +72 -0
  48. package/plugins/PanoMeasurePlugin/Model/polyline.d.ts +16 -0
  49. package/plugins/PanoMeasurePlugin/Model/polyline.js +111 -0
  50. package/plugins/PanoMeasurePlugin/Modules/DeleteDom/_Assets/delete.svg.d.ts +2 -0
  51. package/plugins/PanoMeasurePlugin/Modules/DeleteDom/_Assets/delete.svg.js +11 -0
  52. package/plugins/PanoMeasurePlugin/Modules/DeleteDom/_Assets/delete_bg.png.d.ts +2 -0
  53. package/plugins/PanoMeasurePlugin/Modules/DeleteDom/_Assets/delete_bg.png.js +11 -0
  54. package/plugins/PanoMeasurePlugin/Modules/DeleteDom/_Assets/delete_hover_bg.png.d.ts +2 -0
  55. package/plugins/PanoMeasurePlugin/Modules/DeleteDom/_Assets/delete_hover_bg.png.js +11 -0
  56. package/plugins/PanoMeasurePlugin/Modules/DeleteDom/index.d.ts +22 -0
  57. package/plugins/PanoMeasurePlugin/Modules/DeleteDom/index.js +184 -0
  58. package/plugins/PanoMeasurePlugin/Modules/FiveHelper.d.ts +11 -0
  59. package/plugins/PanoMeasurePlugin/Modules/FiveHelper.js +68 -0
  60. package/plugins/PanoMeasurePlugin/Modules/GuideController.d.ts +18 -0
  61. package/plugins/PanoMeasurePlugin/Modules/GuideController.js +107 -0
  62. package/plugins/PanoMeasurePlugin/Modules/Magnifier.d.ts +24 -0
  63. package/plugins/PanoMeasurePlugin/Modules/Magnifier.js +139 -0
  64. package/plugins/PanoMeasurePlugin/Modules/UIController/HTML.d.ts +6 -0
  65. package/plugins/PanoMeasurePlugin/Modules/UIController/HTML.js +26 -0
  66. package/plugins/PanoMeasurePlugin/Modules/UIController/MainBtnController.d.ts +18 -0
  67. package/plugins/PanoMeasurePlugin/Modules/UIController/MainBtnController.js +169 -0
  68. package/plugins/PanoMeasurePlugin/Modules/UIController/Revoke/index.d.ts +12 -0
  69. package/plugins/PanoMeasurePlugin/Modules/UIController/Revoke/index.js +59 -0
  70. package/plugins/PanoMeasurePlugin/Modules/UIController/index.d.ts +16 -0
  71. package/plugins/PanoMeasurePlugin/Modules/UIController/index.js +125 -0
  72. package/plugins/PanoMeasurePlugin/Modules/UIController/style.d.ts +17 -0
  73. package/plugins/PanoMeasurePlugin/Modules/UIController/style.js +103 -0
  74. package/plugins/PanoMeasurePlugin/index.d.ts +7 -0
  75. package/plugins/PanoMeasurePlugin/index.js +20 -0
  76. package/plugins/PanoMeasurePlugin/typings/data.d.ts +28 -0
  77. package/plugins/PanoMeasurePlugin/typings/data.js +7 -0
  78. package/plugins/PanoMeasurePlugin/typings/event.type.d.ts +28 -0
  79. package/plugins/PanoMeasurePlugin/typings/event.type.js +7 -0
  80. package/plugins/PanoMeasurePlugin/typings/utils.type.d.ts +1 -0
  81. package/plugins/PanoMeasurePlugin/typings/utils.type.js +7 -0
  82. package/plugins/PanoMeasurePlugin/utils/clearGroup.d.ts +2 -0
  83. package/plugins/PanoMeasurePlugin/utils/clearGroup.js +16 -0
  84. package/plugins/PanoMeasurePlugin/utils/constants.d.ts +4 -0
  85. package/plugins/PanoMeasurePlugin/utils/constants.js +47 -0
  86. package/plugins/PanoMeasurePlugin/utils/distanceDom.d.ts +28 -0
  87. package/plugins/PanoMeasurePlugin/utils/distanceDom.js +147 -0
  88. package/plugins/PanoMeasurePlugin/utils/findAssociatedLines.d.ts +2 -0
  89. package/plugins/PanoMeasurePlugin/utils/findAssociatedLines.js +39 -0
  90. package/plugins/PanoMeasurePlugin/utils/findClosestPoint.d.ts +10 -0
  91. package/plugins/PanoMeasurePlugin/utils/findClosestPoint.js +49 -0
  92. package/plugins/PanoMeasurePlugin/utils/getIntersectionFromEvent.d.ts +4 -0
  93. package/plugins/PanoMeasurePlugin/utils/getIntersectionFromEvent.js +20 -0
  94. package/plugins/PanoMeasurePlugin/utils/getPointFromHammerEvent.d.ts +10 -0
  95. package/plugins/PanoMeasurePlugin/utils/getPointFromHammerEvent.js +33 -0
  96. package/plugins/PanoMeasurePlugin/utils/ironbox.d.ts +1 -0
  97. package/plugins/PanoMeasurePlugin/utils/ironbox.js +14 -0
  98. package/plugins/PanoMeasurePlugin/utils/isNDCPointInScreen.d.ts +2 -0
  99. package/plugins/PanoMeasurePlugin/utils/isNDCPointInScreen.js +16 -0
  100. package/plugins/PanoMeasurePlugin/utils/line.d.ts +17 -0
  101. package/plugins/PanoMeasurePlugin/utils/line.js +61 -0
  102. package/plugins/PanoMeasurePlugin/utils/math.d.ts +17 -0
  103. package/plugins/PanoMeasurePlugin/utils/math.js +57 -0
  104. package/plugins/PanoMeasurePlugin/utils/mouseGroup.d.ts +2 -0
  105. package/plugins/PanoMeasurePlugin/utils/mouseGroup.js +42 -0
  106. package/plugins/PanoMeasurePlugin/utils/ndc2Screen.d.ts +5 -0
  107. package/plugins/PanoMeasurePlugin/utils/ndc2Screen.js +16 -0
  108. package/plugins/PanoRulerPlugin/index.d.ts +4 -0
  109. package/plugins/PanoRulerPlugin/index.js +8 -3
  110. package/plugins/TreasurePlugin/Controller.js +2 -2
  111. package/plugins/TreasurePlugin/TreasureOpenAnime.js +2 -2
  112. package/plugins/floorplan/Assets/floorplanExtraObject.d.ts +1 -1
  113. package/plugins/floorplan/Assets/floorplanExtraObject.js +3 -3
  114. package/plugins/floorplan/ModelFloorplanPlugin/Controller.d.ts +5 -2
  115. package/plugins/floorplan/ModelFloorplanPlugin/Controller.js +22 -11
  116. package/plugins/floorplan/ModelFloorplanPlugin/components/Camera.js +4 -4
  117. package/plugins/floorplan/ModelFloorplanPlugin/components/Compass.js +5 -5
  118. package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/RoomHighlight.js +2 -2
  119. package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/RoomLabels.js +2 -2
  120. package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/RoomMaterial.d.ts +11 -0
  121. package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/RoomMaterial.js +174 -0
  122. package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/RuleLabels.d.ts +8 -0
  123. package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/RuleLabels.js +182 -0
  124. package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/index.d.ts +2 -0
  125. package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/index.js +14 -2
  126. package/plugins/floorplan/ModelFloorplanPlugin/components/index.d.ts +3 -0
  127. package/plugins/floorplan/ModelFloorplanPlugin/components/index.js +1 -1
  128. package/plugins/floorplan/ModelFloorplanPlugin/typings/utility.d.ts +2 -0
  129. package/plugins/floorplan/ModelFloorplanPlugin/typings/utility.js +7 -0
  130. package/plugins/floorplan/ModelFloorplanPlugin/utils/constant.d.ts +1 -1
  131. package/plugins/floorplan/ModelFloorplanPlugin/utils/constant.js +1 -1
  132. package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/Camera.js +3 -2
  133. package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/Camera.style.js +4 -4
  134. package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/NowFloor/ExtraObjects.js +2 -2
  135. package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/NowFloor/RoomHighlight.js +2 -2
  136. package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/NowFloor/index.js +2 -2
  137. package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/index.js +2 -2
  138. package/plugins/floorplan/TopviewFloorplanPlugin/Controller.d.ts +3 -0
  139. package/plugins/floorplan/TopviewFloorplanPlugin/Controller.js +16 -6
  140. package/plugins/floorplan/index.d.ts +4 -0
  141. package/plugins/floorplan/index.js +13 -0
  142. package/plugins/floorplan/typings/floorplanData.d.ts +2 -0
  143. package/plugins/floorplan/typings/floorplanServerData.d.ts +3 -1
  144. package/plugins/floorplan/typings/floorplanServerData.js +3 -3
  145. package/plugins/floorplan/utils/formatData.js +3 -2
  146. package/plugins/floorplan/utils/formatPosition.js +2 -0
  147. package/shared-utils/Subscribe.js +4 -2
  148. package/shared-utils/animationFrame/BetterTween.js +5 -1
  149. package/shared-utils/changeModelCanvasOpacity.d.ts +2 -0
  150. package/shared-utils/{changeModelCanvansOpacity.js → changeModelCanvasOpacity.js} +2 -2
  151. package/shared-utils/filter.js +4 -2
  152. package/shared-utils/math/planimetry.js +2 -0
  153. package/shared-utils/removeArrayItem.d.ts +7 -0
  154. package/shared-utils/removeArrayItem.js +22 -0
  155. package/shared-utils/three/loadTexture.d.ts +2 -2
  156. package/shared-utils/three/loadTexture.js +21 -2
  157. package/shared-utils/changeModelCanvansOpacity.d.ts +0 -2
@@ -1,11 +1,11 @@
1
1
  "use strict";
2
2
 
3
+ require("core-js/modules/es.object.to-string.js");
4
+
3
5
  require("core-js/modules/es.reflect.construct.js");
4
6
 
5
7
  require("core-js/modules/es.array.iterator.js");
6
8
 
7
- require("core-js/modules/es.object.to-string.js");
8
-
9
9
  require("core-js/modules/es.string.iterator.js");
10
10
 
11
11
  require("core-js/modules/es.weak-map.js");
@@ -6,7 +6,7 @@ export declare type GLTFViewPropTypes = {
6
6
  refs?: (gltfViewer: GLTFViewer) => void;
7
7
  } & GLTFViewerConfig;
8
8
  /**
9
- * **GLTFViewer** 预览 `glTF` 模型文件(支持.gltf和.glb格式),附带光照等效果。
9
+ * **GLTFViewer** 预览 `glTF` 模型文件(支持 `.gltf` 和 `.glb` 格式),附带光照等效果等配置。
10
10
  *
11
11
  * ### Usage
12
12
  *
@@ -96,6 +96,12 @@ export declare type GLTFViewPropTypes = {
96
96
  * pointLight?: THREE.PointLight | false
97
97
  * directionalLight?: THREE.DirectionalLight | false
98
98
  * ambientLight?: THREE.AmbientLight | false
99
+ * // 色调映射
100
+ * toneMapping?: {
101
+ * toneMapping?: THREE.ToneMapping
102
+ * toneMappingExposure?: number
103
+ * }
104
+ *
99
105
  * ```
100
106
  * 自带三种默认光照配置,你可以提供自己的光照实例。如果设置 `pointLight: false` 则禁用该光照效果。
101
107
  *
@@ -36,7 +36,7 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
36
36
  function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
37
37
 
38
38
  /**
39
- * **GLTFViewer** 预览 `glTF` 模型文件(支持.gltf和.glb格式),附带光照等效果。
39
+ * **GLTFViewer** 预览 `glTF` 模型文件(支持 `.gltf` 和 `.glb` 格式),附带光照等效果等配置。
40
40
  *
41
41
  * ### Usage
42
42
  *
@@ -126,6 +126,12 @@ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj &&
126
126
  * pointLight?: THREE.PointLight | false
127
127
  * directionalLight?: THREE.DirectionalLight | false
128
128
  * ambientLight?: THREE.AmbientLight | false
129
+ * // 色调映射
130
+ * toneMapping?: {
131
+ * toneMapping?: THREE.ToneMapping
132
+ * toneMappingExposure?: number
133
+ * }
134
+ *
129
135
  * ```
130
136
  * 自带三种默认光照配置,你可以提供自己的光照实例。如果设置 `pointLight: false` 则禁用该光照效果。
131
137
  *
@@ -2,8 +2,6 @@
2
2
 
3
3
  require("core-js/modules/es.array.iterator.js");
4
4
 
5
- require("core-js/modules/es.object.to-string.js");
6
-
7
5
  require("core-js/modules/es.string.iterator.js");
8
6
 
9
7
  require("core-js/modules/es.weak-map.js");
@@ -24,6 +22,8 @@ exports["default"] = void 0;
24
22
 
25
23
  require("core-js/modules/es.array.reduce.js");
26
24
 
25
+ require("core-js/modules/es.object.to-string.js");
26
+
27
27
  require("core-js/modules/es.array.filter.js");
28
28
 
29
29
  require("core-js/modules/es.object.keys.js");
@@ -2,8 +2,6 @@
2
2
 
3
3
  require("core-js/modules/es.array.iterator.js");
4
4
 
5
- require("core-js/modules/es.object.to-string.js");
6
-
7
5
  require("core-js/modules/es.string.iterator.js");
8
6
 
9
7
  require("core-js/modules/es.weak-map.js");
@@ -27,8 +25,12 @@ require("core-js/modules/es.array.concat.js");
27
25
 
28
26
  require("core-js/modules/es.array.for-each.js");
29
27
 
28
+ require("core-js/modules/es.object.to-string.js");
29
+
30
30
  require("core-js/modules/web.dom-collections.for-each.js");
31
31
 
32
+ var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
33
+
32
34
  var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
33
35
 
34
36
  var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
@@ -39,7 +41,7 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
39
41
 
40
42
  function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
41
43
 
42
- var ModelViewController = function ModelViewController() {
44
+ var ModelViewController = /*#__PURE__*/(0, _createClass2["default"])(function ModelViewController() {
43
45
  var _this = this;
44
46
 
45
47
  (0, _classCallCheck2["default"])(this, ModelViewController);
@@ -152,6 +154,5 @@ var ModelViewController = function ModelViewController() {
152
154
  this.scene.add(_light2);
153
155
  }
154
156
  this.scene.add(this.model);
155
- };
156
-
157
+ });
157
158
  exports["default"] = ModelViewController;
@@ -0,0 +1,49 @@
1
+ export declare const work: {
2
+ _signature: string;
3
+ allow_hosts: string[];
4
+ base_url: string;
5
+ certificate: string;
6
+ create_time: null;
7
+ expire_at: string;
8
+ initial: {
9
+ fov: number;
10
+ latitude: number;
11
+ longitude: number;
12
+ pano_index: number;
13
+ recordVideo: boolean;
14
+ };
15
+ model: {
16
+ file_url: string;
17
+ material_base_url: string;
18
+ material_textures: string[];
19
+ };
20
+ observers: {
21
+ accessible_nodes: number[];
22
+ create_time: string;
23
+ floor_index: number;
24
+ id: number;
25
+ index: number;
26
+ position: number[];
27
+ quaternion: {
28
+ w: number;
29
+ x: number;
30
+ y: number;
31
+ z: number;
32
+ };
33
+ standing_position: number[];
34
+ visible_nodes: number[];
35
+ }[];
36
+ panorama: {
37
+ count: number;
38
+ list: {
39
+ back: string;
40
+ down: string;
41
+ front: string;
42
+ index: number;
43
+ left: string;
44
+ right: string;
45
+ up: string;
46
+ }[];
47
+ };
48
+ picture_url: string;
49
+ };