@realsee/dnalogel 0.1.5 → 0.1.7-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/components/GLTFView/index.d.ts +104 -0
- package/components/GLTFView/index.js +181 -0
- package/data/81zxMaeVKLQU93OZMG.d.ts +49 -0
- package/data/81zxMaeVKLQU93OZMG.js +633 -0
- package/data/PrXel3aqGbp34JQn.js +139 -1
- package/data/vLykj3NWrllMrG06.js +335 -71
- package/libs/gltf-viewer/Subscribe.d.ts +76 -0
- package/libs/gltf-viewer/Subscribe.js +231 -0
- package/libs/gltf-viewer/coordsMoveByOffset.d.ts +13 -0
- package/libs/gltf-viewer/coordsMoveByOffset.js +22 -0
- package/libs/gltf-viewer/coordsToDirection.d.ts +5 -0
- package/{components/PBRView/index.js → libs/gltf-viewer/coordsToDirection.js} +14 -18
- package/libs/gltf-viewer/formatRad.d.ts +1 -0
- package/libs/gltf-viewer/formatRad.js +13 -0
- package/libs/gltf-viewer/getFrameTime.d.ts +1 -0
- package/libs/gltf-viewer/getFrameTime.js +28 -0
- package/libs/gltf-viewer/index.d.ts +69 -0
- package/libs/gltf-viewer/index.js +744 -0
- package/libs/gltf-viewer/mouseWheel.d.ts +2 -0
- package/libs/gltf-viewer/mouseWheel.js +59 -0
- package/libs/gltf-viewer/requestAnimationFrame.d.ts +1 -0
- package/libs/gltf-viewer/requestAnimationFrame.js +18 -0
- package/libs/gltf-viewer/requestAnimationFrameInterval.d.ts +1 -0
- package/libs/gltf-viewer/requestAnimationFrameInterval.js +31 -0
- package/libs/gltf-viewer/uuid.d.ts +4 -0
- package/libs/gltf-viewer/uuid.js +28 -0
- package/package.json +5 -4
- package/plugins/ModelEntryDoorGuidePlugin/index.d.ts +6 -2
- package/plugins/ModelEntryDoorGuidePlugin/index.js +22 -14
- package/plugins/ModelRoomLabelPlugin/Controller.js +1 -0
- package/plugins/ModelRoomLabelPlugin/RoomLabelItem.js +5 -5
- package/plugins/ModelRoomLabelPlugin/index.d.ts +4 -0
- package/plugins/ModelRoomLabelPlugin/index.js +7 -2
- package/plugins/PanoMaskSelectorPlugin/createBox.js +3 -0
- package/plugins/PanoMaskSelectorPlugin/index.js +3 -1
- package/plugins/PanoMeasurePlugin/Controller/BaseController.d.ts +36 -0
- package/plugins/PanoMeasurePlugin/Controller/BaseController.js +103 -0
- package/plugins/PanoMeasurePlugin/Controller/EditController.d.ts +52 -0
- package/plugins/PanoMeasurePlugin/Controller/EditController.js +341 -0
- package/plugins/PanoMeasurePlugin/Controller/ShortcutKeyController.d.ts +12 -0
- package/plugins/PanoMeasurePlugin/Controller/ShortcutKeyController.js +69 -0
- package/plugins/PanoMeasurePlugin/Controller/WatchController.d.ts +25 -0
- package/plugins/PanoMeasurePlugin/Controller/WatchController.js +371 -0
- package/plugins/PanoMeasurePlugin/Controller/index.d.ts +61 -0
- package/plugins/PanoMeasurePlugin/Controller/index.js +230 -0
- package/plugins/PanoMeasurePlugin/Model/index.d.ts +38 -0
- package/plugins/PanoMeasurePlugin/Model/index.js +235 -0
- package/plugins/PanoMeasurePlugin/Model/line.d.ts +30 -0
- package/plugins/PanoMeasurePlugin/Model/line.js +121 -0
- package/plugins/PanoMeasurePlugin/Model/point.d.ts +16 -0
- package/plugins/PanoMeasurePlugin/Model/point.js +68 -0
- package/plugins/PanoMeasurePlugin/Model/polyline.d.ts +16 -0
- package/plugins/PanoMeasurePlugin/Model/polyline.js +109 -0
- package/plugins/PanoMeasurePlugin/Modules/DeleteDom/_Assets/delete.svg.d.ts +2 -0
- package/plugins/PanoMeasurePlugin/Modules/DeleteDom/_Assets/delete.svg.js +11 -0
- package/plugins/PanoMeasurePlugin/Modules/DeleteDom/_Assets/delete_bg.png.d.ts +2 -0
- package/plugins/PanoMeasurePlugin/Modules/DeleteDom/_Assets/delete_bg.png.js +11 -0
- package/plugins/PanoMeasurePlugin/Modules/DeleteDom/_Assets/delete_hover_bg.png.d.ts +2 -0
- package/plugins/PanoMeasurePlugin/Modules/DeleteDom/_Assets/delete_hover_bg.png.js +11 -0
- package/plugins/PanoMeasurePlugin/Modules/DeleteDom/index.d.ts +22 -0
- package/plugins/PanoMeasurePlugin/Modules/DeleteDom/index.js +182 -0
- package/plugins/PanoMeasurePlugin/Modules/FiveHelper.d.ts +11 -0
- package/plugins/PanoMeasurePlugin/Modules/FiveHelper.js +66 -0
- package/plugins/PanoMeasurePlugin/Modules/GuideController.d.ts +18 -0
- package/plugins/PanoMeasurePlugin/Modules/GuideController.js +107 -0
- package/plugins/PanoMeasurePlugin/Modules/Magnifier.d.ts +24 -0
- package/plugins/PanoMeasurePlugin/Modules/Magnifier.js +139 -0
- package/plugins/PanoMeasurePlugin/Modules/UIController/HTML.d.ts +6 -0
- package/plugins/PanoMeasurePlugin/Modules/UIController/HTML.js +26 -0
- package/plugins/PanoMeasurePlugin/Modules/UIController/MainBtnController.d.ts +18 -0
- package/plugins/PanoMeasurePlugin/Modules/UIController/MainBtnController.js +169 -0
- package/plugins/PanoMeasurePlugin/Modules/UIController/Revoke/index.d.ts +12 -0
- package/plugins/PanoMeasurePlugin/Modules/UIController/Revoke/index.js +59 -0
- package/plugins/PanoMeasurePlugin/Modules/UIController/index.d.ts +16 -0
- package/plugins/PanoMeasurePlugin/Modules/UIController/index.js +123 -0
- package/plugins/PanoMeasurePlugin/Modules/UIController/style.d.ts +17 -0
- package/plugins/PanoMeasurePlugin/Modules/UIController/style.js +103 -0
- package/plugins/PanoMeasurePlugin/index.d.ts +7 -0
- package/plugins/PanoMeasurePlugin/index.js +20 -0
- package/plugins/PanoMeasurePlugin/typings/data.d.ts +28 -0
- package/plugins/PanoMeasurePlugin/typings/data.js +7 -0
- package/plugins/PanoMeasurePlugin/typings/event.type.d.ts +28 -0
- package/plugins/PanoMeasurePlugin/typings/event.type.js +7 -0
- package/plugins/PanoMeasurePlugin/typings/utils.type.d.ts +1 -0
- package/plugins/PanoMeasurePlugin/typings/utils.type.js +7 -0
- package/plugins/PanoMeasurePlugin/utils/clearGroup.d.ts +2 -0
- package/plugins/PanoMeasurePlugin/utils/clearGroup.js +16 -0
- package/plugins/PanoMeasurePlugin/utils/constants.d.ts +4 -0
- package/plugins/PanoMeasurePlugin/utils/constants.js +47 -0
- package/plugins/PanoMeasurePlugin/utils/distanceDom.d.ts +28 -0
- package/plugins/PanoMeasurePlugin/utils/distanceDom.js +147 -0
- package/plugins/PanoMeasurePlugin/utils/findAssociatedLines.d.ts +2 -0
- package/plugins/PanoMeasurePlugin/utils/findAssociatedLines.js +37 -0
- package/plugins/PanoMeasurePlugin/utils/findClosestPoint.d.ts +10 -0
- package/plugins/PanoMeasurePlugin/utils/findClosestPoint.js +49 -0
- package/plugins/PanoMeasurePlugin/utils/getIntersectionFromEvent.d.ts +4 -0
- package/plugins/PanoMeasurePlugin/utils/getIntersectionFromEvent.js +20 -0
- package/plugins/PanoMeasurePlugin/utils/getPointFromHammerEvent.d.ts +10 -0
- package/plugins/PanoMeasurePlugin/utils/getPointFromHammerEvent.js +33 -0
- package/plugins/PanoMeasurePlugin/utils/ironbox.d.ts +1 -0
- package/plugins/PanoMeasurePlugin/utils/ironbox.js +14 -0
- package/plugins/PanoMeasurePlugin/utils/isNDCPointInScreen.d.ts +2 -0
- package/plugins/PanoMeasurePlugin/utils/isNDCPointInScreen.js +16 -0
- package/plugins/PanoMeasurePlugin/utils/line.d.ts +17 -0
- package/plugins/PanoMeasurePlugin/utils/line.js +61 -0
- package/plugins/PanoMeasurePlugin/utils/math.d.ts +17 -0
- package/plugins/PanoMeasurePlugin/utils/math.js +57 -0
- package/plugins/PanoMeasurePlugin/utils/mouseGroup.d.ts +2 -0
- package/plugins/PanoMeasurePlugin/utils/mouseGroup.js +42 -0
- package/plugins/PanoMeasurePlugin/utils/ndc2Screen.d.ts +5 -0
- package/plugins/PanoMeasurePlugin/utils/ndc2Screen.js +16 -0
- package/plugins/PanoRulerPlugin/index.d.ts +4 -0
- package/plugins/PanoRulerPlugin/index.js +6 -1
- package/plugins/PanoTVVideoPlugin/index.d.ts +2 -0
- package/plugins/PanoTVVideoPlugin/index.js +20 -14
- package/plugins/floorplan/ModelFloorplanPlugin/Controller.d.ts +5 -2
- package/plugins/floorplan/ModelFloorplanPlugin/Controller.js +22 -11
- package/plugins/floorplan/ModelFloorplanPlugin/components/Camera.js +4 -4
- package/plugins/floorplan/ModelFloorplanPlugin/components/Compass.js +5 -5
- package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/RoomLabels.js +2 -2
- package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/RoomMaterial.d.ts +11 -0
- package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/RoomMaterial.js +174 -0
- package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/RuleLabels.d.ts +8 -0
- package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/RuleLabels.js +179 -0
- package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/index.d.ts +2 -0
- package/plugins/floorplan/ModelFloorplanPlugin/components/NowFloor/index.js +14 -2
- package/plugins/floorplan/ModelFloorplanPlugin/components/index.d.ts +3 -0
- package/plugins/floorplan/ModelFloorplanPlugin/components/index.js +1 -1
- package/plugins/floorplan/ModelFloorplanPlugin/typings/utility.d.ts +2 -0
- package/plugins/floorplan/ModelFloorplanPlugin/typings/utility.js +7 -0
- package/plugins/floorplan/ModelFloorplanPlugin/utils/constant.d.ts +1 -1
- package/plugins/floorplan/ModelFloorplanPlugin/utils/constant.js +1 -1
- package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/Camera.js +1 -0
- package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/Camera.style.js +4 -4
- package/plugins/floorplan/PanoFloorplanRadarPlugin/Content/NowFloor/ExtraObjects.js +2 -2
- package/plugins/floorplan/TopviewFloorplanPlugin/Controller.js +3 -3
- package/plugins/floorplan/index.d.ts +4 -0
- package/plugins/floorplan/index.js +13 -0
- package/plugins/floorplan/typings/floorplanData.d.ts +2 -0
- package/plugins/floorplan/typings/floorplanServerData.d.ts +2 -0
- package/plugins/floorplan/utils/formatData.js +2 -1
- package/shared-utils/changeModelCanvasOpacity.d.ts +2 -0
- package/shared-utils/{changeModelCanvansOpacity.js → changeModelCanvasOpacity.js} +2 -2
- package/shared-utils/removeArrayItem.d.ts +7 -0
- package/shared-utils/removeArrayItem.js +22 -0
- package/shared-utils/three/loadTexture.d.ts +2 -2
- package/shared-utils/three/loadTexture.js +21 -2
- package/typedoc/libs.d.ts +1 -0
- package/typedoc/libs.js +7 -0
- package/components/PBRView/index.d.ts +0 -14
- package/shared-utils/changeModelCanvansOpacity.d.ts +0 -2
package/data/PrXel3aqGbp34JQn.js
CHANGED
|
@@ -4280,7 +4280,145 @@ var floorplanServerData = {
|
|
|
4280
4280
|
}
|
|
4281
4281
|
},
|
|
4282
4282
|
observer_indexs: [3, 4]
|
|
4283
|
-
}]
|
|
4283
|
+
}],
|
|
4284
|
+
rules: {
|
|
4285
|
+
top: [[{
|
|
4286
|
+
x: 43160,
|
|
4287
|
+
y: 48510
|
|
4288
|
+
}, {
|
|
4289
|
+
x: 46765,
|
|
4290
|
+
y: 48510
|
|
4291
|
+
}], [{
|
|
4292
|
+
x: 35320,
|
|
4293
|
+
y: 41175
|
|
4294
|
+
}, {
|
|
4295
|
+
x: 38330,
|
|
4296
|
+
y: 41175
|
|
4297
|
+
}], [{
|
|
4298
|
+
x: 38450,
|
|
4299
|
+
y: 41175
|
|
4300
|
+
}, {
|
|
4301
|
+
x: 43160,
|
|
4302
|
+
y: 41175
|
|
4303
|
+
}]],
|
|
4304
|
+
right: [[{
|
|
4305
|
+
x: 46765,
|
|
4306
|
+
y: 47085
|
|
4307
|
+
}, {
|
|
4308
|
+
x: 46765,
|
|
4309
|
+
y: 48510
|
|
4310
|
+
}], [{
|
|
4311
|
+
x: 45055,
|
|
4312
|
+
y: 34095
|
|
4313
|
+
}, {
|
|
4314
|
+
x: 45055,
|
|
4315
|
+
y: 34855
|
|
4316
|
+
}], [{
|
|
4317
|
+
x: 46485,
|
|
4318
|
+
y: 34855
|
|
4319
|
+
}, {
|
|
4320
|
+
x: 46485,
|
|
4321
|
+
y: 38715
|
|
4322
|
+
}], [{
|
|
4323
|
+
x: 38330,
|
|
4324
|
+
y: 32380
|
|
4325
|
+
}, {
|
|
4326
|
+
x: 38330,
|
|
4327
|
+
y: 34715
|
|
4328
|
+
}], [{
|
|
4329
|
+
x: 46665,
|
|
4330
|
+
y: 40785
|
|
4331
|
+
}, {
|
|
4332
|
+
x: 46665,
|
|
4333
|
+
y: 43315
|
|
4334
|
+
}], [{
|
|
4335
|
+
x: 46665,
|
|
4336
|
+
y: 38835
|
|
4337
|
+
}, {
|
|
4338
|
+
x: 46665,
|
|
4339
|
+
y: 40665
|
|
4340
|
+
}], [{
|
|
4341
|
+
x: 46625,
|
|
4342
|
+
y: 43435
|
|
4343
|
+
}, {
|
|
4344
|
+
x: 46625,
|
|
4345
|
+
y: 46965
|
|
4346
|
+
}]],
|
|
4347
|
+
bottom: [[{
|
|
4348
|
+
x: 35320,
|
|
4349
|
+
y: 32380
|
|
4350
|
+
}, {
|
|
4351
|
+
x: 38330,
|
|
4352
|
+
y: 32380
|
|
4353
|
+
}], [{
|
|
4354
|
+
x: 45055,
|
|
4355
|
+
y: 34855
|
|
4356
|
+
}, {
|
|
4357
|
+
x: 46485,
|
|
4358
|
+
y: 34855
|
|
4359
|
+
}], [{
|
|
4360
|
+
x: 39935,
|
|
4361
|
+
y: 34095
|
|
4362
|
+
}, {
|
|
4363
|
+
x: 42980,
|
|
4364
|
+
y: 34095
|
|
4365
|
+
}], [{
|
|
4366
|
+
x: 43100,
|
|
4367
|
+
y: 34095
|
|
4368
|
+
}, {
|
|
4369
|
+
x: 45055,
|
|
4370
|
+
y: 34095
|
|
4371
|
+
}], [{
|
|
4372
|
+
x: 38450,
|
|
4373
|
+
y: 34835
|
|
4374
|
+
}, {
|
|
4375
|
+
x: 39935,
|
|
4376
|
+
y: 34835
|
|
4377
|
+
}]],
|
|
4378
|
+
left: [[{
|
|
4379
|
+
x: 43160,
|
|
4380
|
+
y: 47085
|
|
4381
|
+
}, {
|
|
4382
|
+
x: 43160,
|
|
4383
|
+
y: 48510
|
|
4384
|
+
}], [{
|
|
4385
|
+
x: 39935,
|
|
4386
|
+
y: 34095
|
|
4387
|
+
}, {
|
|
4388
|
+
x: 39935,
|
|
4389
|
+
y: 34835
|
|
4390
|
+
}], [{
|
|
4391
|
+
x: 43160,
|
|
4392
|
+
y: 43435
|
|
4393
|
+
}, {
|
|
4394
|
+
x: 43160,
|
|
4395
|
+
y: 46965
|
|
4396
|
+
}], [{
|
|
4397
|
+
x: 43160,
|
|
4398
|
+
y: 41175
|
|
4399
|
+
}, {
|
|
4400
|
+
x: 43160,
|
|
4401
|
+
y: 43315
|
|
4402
|
+
}], [{
|
|
4403
|
+
x: 35320,
|
|
4404
|
+
y: 32380
|
|
4405
|
+
}, {
|
|
4406
|
+
x: 35320,
|
|
4407
|
+
y: 37045
|
|
4408
|
+
}], [{
|
|
4409
|
+
x: 35320,
|
|
4410
|
+
y: 39150
|
|
4411
|
+
}, {
|
|
4412
|
+
x: 35320,
|
|
4413
|
+
y: 41175
|
|
4414
|
+
}], [{
|
|
4415
|
+
x: 35320,
|
|
4416
|
+
y: 37165
|
|
4417
|
+
}, {
|
|
4418
|
+
x: 35320,
|
|
4419
|
+
y: 39030
|
|
4420
|
+
}]]
|
|
4421
|
+
}
|
|
4284
4422
|
}],
|
|
4285
4423
|
observers: [{
|
|
4286
4424
|
index: 0,
|