@kq_npm/client3d_webgl_vue 4.5.12-beta → 4.5.14
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/adddata/index.js +7 -3
- package/aspectanalysis/index.js +4 -3
- package/baseterraingallery/index.js +5 -2
- package/boxclip/index.js +15 -14
- package/clientPrint/index.js +1093 -664
- package/comparemap/index.js +13 -7
- package/compass/index.js +5 -2
- package/excavatefillanalysis/index.js +4 -3
- package/fixedzoomin/index.js +5 -2
- package/fixedzoomout/index.js +5 -2
- package/flight/index.js +5 -2
- package/floodanalysis/index.js +9 -5
- package/geologicalbodyanalysis/index.js +6 -5
- package/gpuspatialquery/index.js +9 -5
- package/hawkeye/index.js +3 -2
- package/headertemp/index.js +2 -2
- package/heatmap3d/index.js +23 -21
- package/index.js +1089 -660
- package/isolineanalysis/index.js +47 -44
- package/light/index.js +12 -11
- package/limitheightanalysis/index.js +4 -3
- package/measure/index.js +6 -3
- package/modelFlat/index.js +7 -3
- package/modelexcavate/index.js +8 -4
- package/modelfilter/index.js +17 -16
- package/modelprofileanalysis/index.js +7 -3
- package/modelselect/index.js +8 -4
- package/package.json +1 -1
- package/particleeffect/index.js +16 -15
- package/planeclip/index.js +4 -3
- package/resetview/index.js +5 -2
- package/roller/index.js +17 -12
- package/scaneffect/index.js +6 -6
- package/sceneadvancedtoimage/index.js +4 -3
- package/sceneapp/index.js +506 -260
- package/sceneset/index.js +31 -30
- package/scenetohdimage/index.js +6 -5
- package/sceneview/index.js +1093 -664
- package/screenshot/index.js +7 -3
- package/shadowanalysis/index.js +17 -14
- package/sightlineanalysis/index.js +10 -6
- package/skylineanalysis/index.js +9 -5
- package/slopeanalysis/index.js +18 -14
- package/slopeaspectanalysis/index.js +18 -14
- package/statusbar/index.js +1 -1
- package/terrainoperation/index.js +4 -3
- package/terrainprofileanalysis/index.js +9 -8
- package/underground/index.js +7 -5
- package/videofusion/index.js +16 -12
- package/videoproject/index.js +14 -10
- package/viewshedanalysis/index.js +4 -3
- package/weathereffect/index.js +12 -11
- package/wireframesketch/index.js +9 -8
package/videofusion/index.js
CHANGED
|
@@ -483,7 +483,7 @@ const _hoisted_3 = {
|
|
|
483
483
|
const __default__ = {
|
|
484
484
|
name: "Kq3dVideoFusion"
|
|
485
485
|
};
|
|
486
|
-
/* harmony default export */ var VideoFusionvue_type_script_setup_true_lang_js = (
|
|
486
|
+
/* harmony default export */ var VideoFusionvue_type_script_setup_true_lang_js = (/*#__PURE__*/Object.assign(__default__, {
|
|
487
487
|
props: {
|
|
488
488
|
// 设置参数
|
|
489
489
|
settingParams: {
|
|
@@ -526,11 +526,15 @@ const __default__ = {
|
|
|
526
526
|
setup(__props, {
|
|
527
527
|
expose: __expose
|
|
528
528
|
}) {
|
|
529
|
-
|
|
529
|
+
const props = __props;
|
|
530
|
+
const {
|
|
531
|
+
proxy
|
|
532
|
+
} = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.getCurrentInstance)();
|
|
533
|
+
let language = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(proxy.$i18n.global.messages[proxy.$i18n.global.locale]["webgl"]);
|
|
530
534
|
let collapseValue = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)("");
|
|
531
535
|
|
|
532
536
|
// 获取组件传参
|
|
533
|
-
|
|
537
|
+
|
|
534
538
|
const lonlatOffset = 0.00001;
|
|
535
539
|
const heightOffset = 10;
|
|
536
540
|
let formItem = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.reactive)({
|
|
@@ -823,7 +827,7 @@ const __default__ = {
|
|
|
823
827
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minLongitude,
|
|
824
828
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxLongitude,
|
|
825
829
|
onInput: _cache[3] || (_cache[3] = $event => paramsChanged('longitude'))
|
|
826
|
-
}, null, 8 /* PROPS */, ["modelValue", "min", "max"])]),
|
|
830
|
+
}, null, 8 /* PROPS */, ["modelValue", "step", "min", "max"])]),
|
|
827
831
|
_: 1 /* STABLE */
|
|
828
832
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
829
833
|
span: 14,
|
|
@@ -859,7 +863,7 @@ const __default__ = {
|
|
|
859
863
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minLatitude,
|
|
860
864
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxLatitude,
|
|
861
865
|
onInput: _cache[5] || (_cache[5] = $event => paramsChanged('latitude'))
|
|
862
|
-
}, null, 8 /* PROPS */, ["modelValue", "min", "max"])]),
|
|
866
|
+
}, null, 8 /* PROPS */, ["modelValue", "step", "min", "max"])]),
|
|
863
867
|
_: 1 /* STABLE */
|
|
864
868
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
865
869
|
span: 14,
|
|
@@ -895,7 +899,7 @@ const __default__ = {
|
|
|
895
899
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minHeight,
|
|
896
900
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxHeight,
|
|
897
901
|
onInput: _cache[7] || (_cache[7] = $event => paramsChanged('height'))
|
|
898
|
-
}, null, 8 /* PROPS */, ["modelValue", "min", "max"])]),
|
|
902
|
+
}, null, 8 /* PROPS */, ["modelValue", "step", "min", "max"])]),
|
|
899
903
|
_: 1 /* STABLE */
|
|
900
904
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
901
905
|
span: 14,
|
|
@@ -971,7 +975,7 @@ const __default__ = {
|
|
|
971
975
|
min: 10,
|
|
972
976
|
max: 200,
|
|
973
977
|
onInput: _cache[13] || (_cache[13] = $event => paramsChanged('far'))
|
|
974
|
-
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
978
|
+
}, null, 8 /* PROPS */, ["modelValue", "step"])]),
|
|
975
979
|
_: 1 /* STABLE */
|
|
976
980
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
977
981
|
span: 8
|
|
@@ -984,7 +988,7 @@ const __default__ = {
|
|
|
984
988
|
max: 200,
|
|
985
989
|
"controls-position": "right",
|
|
986
990
|
onInput: _cache[15] || (_cache[15] = $event => paramsChanged('far'))
|
|
987
|
-
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
991
|
+
}, null, 8 /* PROPS */, ["modelValue", "step"])]),
|
|
988
992
|
_: 1 /* STABLE */
|
|
989
993
|
})]),
|
|
990
994
|
_: 1 /* STABLE */
|
|
@@ -1131,7 +1135,7 @@ const __default__ = {
|
|
|
1131
1135
|
min: 0,
|
|
1132
1136
|
max: 1,
|
|
1133
1137
|
onInput: _cache[29] || (_cache[29] = $event => paramsChanged('alpha'))
|
|
1134
|
-
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
1138
|
+
}, null, 8 /* PROPS */, ["modelValue", "step"])]),
|
|
1135
1139
|
_: 1 /* STABLE */
|
|
1136
1140
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
1137
1141
|
span: 8
|
|
@@ -1144,7 +1148,7 @@ const __default__ = {
|
|
|
1144
1148
|
max: 1,
|
|
1145
1149
|
"controls-position": "right",
|
|
1146
1150
|
onInput: _cache[31] || (_cache[31] = $event => paramsChanged('alpha'))
|
|
1147
|
-
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
1151
|
+
}, null, 8 /* PROPS */, ["modelValue", "step"])]),
|
|
1148
1152
|
_: 1 /* STABLE */
|
|
1149
1153
|
})]),
|
|
1150
1154
|
_: 1 /* STABLE */
|
|
@@ -1171,7 +1175,7 @@ const __default__ = {
|
|
|
1171
1175
|
min: 0,
|
|
1172
1176
|
max: 1,
|
|
1173
1177
|
onInput: _cache[33] || (_cache[33] = $event => paramsChanged('eclosion'))
|
|
1174
|
-
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
1178
|
+
}, null, 8 /* PROPS */, ["modelValue", "step"])]),
|
|
1175
1179
|
_: 1 /* STABLE */
|
|
1176
1180
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
1177
1181
|
span: 8
|
|
@@ -1184,7 +1188,7 @@ const __default__ = {
|
|
|
1184
1188
|
max: 1,
|
|
1185
1189
|
"controls-position": "right",
|
|
1186
1190
|
onInput: _cache[35] || (_cache[35] = $event => paramsChanged('eclosion'))
|
|
1187
|
-
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
1191
|
+
}, null, 8 /* PROPS */, ["modelValue", "step"])]),
|
|
1188
1192
|
_: 1 /* STABLE */
|
|
1189
1193
|
})]),
|
|
1190
1194
|
_: 1 /* STABLE */
|
package/videoproject/index.js
CHANGED
|
@@ -471,7 +471,7 @@ const _hoisted_4 = {
|
|
|
471
471
|
const __default__ = {
|
|
472
472
|
name: "Kq3dVideoProject"
|
|
473
473
|
};
|
|
474
|
-
/* harmony default export */ var VideoProjectvue_type_script_setup_true_lang_js = (
|
|
474
|
+
/* harmony default export */ var VideoProjectvue_type_script_setup_true_lang_js = (/*#__PURE__*/Object.assign(__default__, {
|
|
475
475
|
props: {
|
|
476
476
|
// 设置参数
|
|
477
477
|
settingParams: {
|
|
@@ -514,11 +514,15 @@ const __default__ = {
|
|
|
514
514
|
setup(__props, {
|
|
515
515
|
expose: __expose
|
|
516
516
|
}) {
|
|
517
|
-
|
|
517
|
+
const props = __props;
|
|
518
|
+
const {
|
|
519
|
+
proxy
|
|
520
|
+
} = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.getCurrentInstance)();
|
|
521
|
+
let language = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(proxy.$i18n.global.messages[proxy.$i18n.global.locale]["webgl"]);
|
|
518
522
|
let collapseValue = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)("");
|
|
519
523
|
|
|
520
524
|
// 获取组件传参
|
|
521
|
-
|
|
525
|
+
|
|
522
526
|
const lonlatOffset = 0.00001;
|
|
523
527
|
const heightOffset = 10;
|
|
524
528
|
let formItem = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.reactive)({
|
|
@@ -850,7 +854,7 @@ const __default__ = {
|
|
|
850
854
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minLongitude,
|
|
851
855
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxLongitude,
|
|
852
856
|
onInput: _cache[6] || (_cache[6] = $event => paramsChanged('longitude'))
|
|
853
|
-
}, null, 8 /* PROPS */, ["modelValue", "min", "max"])]),
|
|
857
|
+
}, null, 8 /* PROPS */, ["modelValue", "step", "min", "max"])]),
|
|
854
858
|
_: 1 /* STABLE */
|
|
855
859
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
856
860
|
span: 14,
|
|
@@ -886,7 +890,7 @@ const __default__ = {
|
|
|
886
890
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minLatitude,
|
|
887
891
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxLatitude,
|
|
888
892
|
onInput: _cache[8] || (_cache[8] = $event => paramsChanged('latitude'))
|
|
889
|
-
}, null, 8 /* PROPS */, ["modelValue", "min", "max"])]),
|
|
893
|
+
}, null, 8 /* PROPS */, ["modelValue", "step", "min", "max"])]),
|
|
890
894
|
_: 1 /* STABLE */
|
|
891
895
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
892
896
|
span: 14,
|
|
@@ -922,7 +926,7 @@ const __default__ = {
|
|
|
922
926
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minHeight,
|
|
923
927
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxHeight,
|
|
924
928
|
onInput: _cache[10] || (_cache[10] = $event => paramsChanged('height'))
|
|
925
|
-
}, null, 8 /* PROPS */, ["modelValue", "min", "max"])]),
|
|
929
|
+
}, null, 8 /* PROPS */, ["modelValue", "step", "min", "max"])]),
|
|
926
930
|
_: 1 /* STABLE */
|
|
927
931
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
928
932
|
span: 14,
|
|
@@ -998,7 +1002,7 @@ const __default__ = {
|
|
|
998
1002
|
min: 0.5,
|
|
999
1003
|
max: 2,
|
|
1000
1004
|
onInput: _cache[16] || (_cache[16] = $event => paramsChanged('aspectRatio'))
|
|
1001
|
-
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
1005
|
+
}, null, 8 /* PROPS */, ["modelValue", "step", "min"])]),
|
|
1002
1006
|
_: 1 /* STABLE */
|
|
1003
1007
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
1004
1008
|
span: 8
|
|
@@ -1011,7 +1015,7 @@ const __default__ = {
|
|
|
1011
1015
|
max: 2,
|
|
1012
1016
|
"controls-position": "right",
|
|
1013
1017
|
onInput: _cache[18] || (_cache[18] = $event => paramsChanged('aspectRatio'))
|
|
1014
|
-
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
1018
|
+
}, null, 8 /* PROPS */, ["modelValue", "step", "min"])]),
|
|
1015
1019
|
_: 1 /* STABLE */
|
|
1016
1020
|
})]),
|
|
1017
1021
|
_: 1 /* STABLE */
|
|
@@ -1038,7 +1042,7 @@ const __default__ = {
|
|
|
1038
1042
|
min: 10,
|
|
1039
1043
|
max: 200,
|
|
1040
1044
|
onInput: _cache[20] || (_cache[20] = $event => paramsChanged('far'))
|
|
1041
|
-
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
1045
|
+
}, null, 8 /* PROPS */, ["modelValue", "step"])]),
|
|
1042
1046
|
_: 1 /* STABLE */
|
|
1043
1047
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
1044
1048
|
span: 8
|
|
@@ -1051,7 +1055,7 @@ const __default__ = {
|
|
|
1051
1055
|
max: 200,
|
|
1052
1056
|
"controls-position": "right",
|
|
1053
1057
|
onInput: _cache[22] || (_cache[22] = $event => paramsChanged('far'))
|
|
1054
|
-
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
1058
|
+
}, null, 8 /* PROPS */, ["modelValue", "step"])]),
|
|
1055
1059
|
_: 1 /* STABLE */
|
|
1056
1060
|
})]),
|
|
1057
1061
|
_: 1 /* STABLE */
|
|
@@ -348,7 +348,7 @@ const _hoisted_2 = {
|
|
|
348
348
|
const __default__ = {
|
|
349
349
|
name: "Kq3dViewshedAnalysis"
|
|
350
350
|
};
|
|
351
|
-
/* harmony default export */ var ViewshedAnalysisvue_type_script_setup_true_lang_js = (
|
|
351
|
+
/* harmony default export */ var ViewshedAnalysisvue_type_script_setup_true_lang_js = (/*#__PURE__*/Object.assign(__default__, {
|
|
352
352
|
props: {
|
|
353
353
|
// 设置参数
|
|
354
354
|
settingParams: {
|
|
@@ -391,15 +391,16 @@ const __default__ = {
|
|
|
391
391
|
setup(__props, {
|
|
392
392
|
expose: __expose
|
|
393
393
|
}) {
|
|
394
|
+
const props = __props;
|
|
394
395
|
const {
|
|
395
396
|
proxy
|
|
396
397
|
} = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.getCurrentInstance)();
|
|
397
398
|
let currentLang = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)("");
|
|
398
|
-
let language = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(
|
|
399
|
+
let language = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(proxy.$i18n.global.messages[proxy.$i18n.global.locale]["webgl"]);
|
|
399
400
|
let collapseValue = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)("");
|
|
400
401
|
|
|
401
402
|
// 获取组件传参
|
|
402
|
-
|
|
403
|
+
|
|
403
404
|
let formItem = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.reactive)({
|
|
404
405
|
offsetHeight: props.settingParams && props.settingParams.offsetHeight || 1.8,
|
|
405
406
|
// 视点高
|
package/weathereffect/index.js
CHANGED
|
@@ -376,7 +376,7 @@ const _hoisted_2 = {
|
|
|
376
376
|
const __default__ = {
|
|
377
377
|
name: "Kq3dWeatherEffect"
|
|
378
378
|
};
|
|
379
|
-
/* harmony default export */ var WeatherEffectvue_type_script_setup_true_lang_js = (
|
|
379
|
+
/* harmony default export */ var WeatherEffectvue_type_script_setup_true_lang_js = (/*#__PURE__*/Object.assign(__default__, {
|
|
380
380
|
props: {
|
|
381
381
|
// 设置参数
|
|
382
382
|
settingParams: {
|
|
@@ -419,15 +419,16 @@ const __default__ = {
|
|
|
419
419
|
setup(__props, {
|
|
420
420
|
expose: __expose
|
|
421
421
|
}) {
|
|
422
|
+
const props = __props;
|
|
422
423
|
const {
|
|
423
424
|
proxy
|
|
424
425
|
} = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.getCurrentInstance)();
|
|
425
426
|
let currentLang = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)("");
|
|
426
|
-
let language = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(
|
|
427
|
+
let language = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(proxy.$i18n.global.messages[proxy.$i18n.global.locale]["webgl"]);
|
|
427
428
|
let collapseValue = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)("");
|
|
428
429
|
|
|
429
430
|
// 获取组件传参
|
|
430
|
-
|
|
431
|
+
|
|
431
432
|
let formItem = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.reactive)({
|
|
432
433
|
mode: props.settingParams && props.settingParams.mode || "rain",
|
|
433
434
|
rangeRadius: props.settingParams && props.settingParams.rangeRadius || 100,
|
|
@@ -702,7 +703,7 @@ const __default__ = {
|
|
|
702
703
|
min: 0.1,
|
|
703
704
|
max: 5,
|
|
704
705
|
onInput: _cache[11] || (_cache[11] = $event => paramsChanged('particleSize'))
|
|
705
|
-
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
706
|
+
}, null, 8 /* PROPS */, ["modelValue", "step", "min"])]),
|
|
706
707
|
_: 1 /* STABLE */
|
|
707
708
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
708
709
|
span: 8
|
|
@@ -715,7 +716,7 @@ const __default__ = {
|
|
|
715
716
|
max: 5,
|
|
716
717
|
"controls-position": "right",
|
|
717
718
|
onInput: _cache[13] || (_cache[13] = $event => paramsChanged('particleSize'))
|
|
718
|
-
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
719
|
+
}, null, 8 /* PROPS */, ["modelValue", "step", "min"])]),
|
|
719
720
|
_: 1 /* STABLE */
|
|
720
721
|
})]),
|
|
721
722
|
_: 1 /* STABLE */
|
|
@@ -744,7 +745,7 @@ const __default__ = {
|
|
|
744
745
|
max: 5.0,
|
|
745
746
|
step: 0.1,
|
|
746
747
|
onInput: _cache[15] || (_cache[15] = $event => paramsChanged('startScale'))
|
|
747
|
-
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
748
|
+
}, null, 8 /* PROPS */, ["modelValue", "min", "max", "step"])]),
|
|
748
749
|
_: 1 /* STABLE */
|
|
749
750
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
750
751
|
span: 8
|
|
@@ -757,7 +758,7 @@ const __default__ = {
|
|
|
757
758
|
step: 0.1,
|
|
758
759
|
"controls-position": "right",
|
|
759
760
|
onInput: _cache[17] || (_cache[17] = $event => paramsChanged('startScale'))
|
|
760
|
-
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
761
|
+
}, null, 8 /* PROPS */, ["modelValue", "min", "max", "step"])]),
|
|
761
762
|
_: 1 /* STABLE */
|
|
762
763
|
})]),
|
|
763
764
|
_: 1 /* STABLE */
|
|
@@ -786,7 +787,7 @@ const __default__ = {
|
|
|
786
787
|
max: 5.0,
|
|
787
788
|
step: 0.1,
|
|
788
789
|
onInput: _cache[19] || (_cache[19] = $event => paramsChanged('endScale'))
|
|
789
|
-
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
790
|
+
}, null, 8 /* PROPS */, ["modelValue", "min", "max", "step"])]),
|
|
790
791
|
_: 1 /* STABLE */
|
|
791
792
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
792
793
|
span: 8
|
|
@@ -799,7 +800,7 @@ const __default__ = {
|
|
|
799
800
|
step: 0.1,
|
|
800
801
|
"controls-position": "right",
|
|
801
802
|
onInput: _cache[21] || (_cache[21] = $event => paramsChanged('endScale'))
|
|
802
|
-
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
803
|
+
}, null, 8 /* PROPS */, ["modelValue", "min", "max", "step"])]),
|
|
803
804
|
_: 1 /* STABLE */
|
|
804
805
|
})]),
|
|
805
806
|
_: 1 /* STABLE */
|
|
@@ -828,7 +829,7 @@ const __default__ = {
|
|
|
828
829
|
min: 0.1,
|
|
829
830
|
max: 5,
|
|
830
831
|
onInput: _cache[23] || (_cache[23] = $event => paramsChanged('gravity'))
|
|
831
|
-
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
832
|
+
}, null, 8 /* PROPS */, ["modelValue", "step", "min"])]),
|
|
832
833
|
_: 1 /* STABLE */
|
|
833
834
|
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
834
835
|
span: 8
|
|
@@ -841,7 +842,7 @@ const __default__ = {
|
|
|
841
842
|
step: 0.1,
|
|
842
843
|
"controls-position": "right",
|
|
843
844
|
onInput: _cache[25] || (_cache[25] = $event => paramsChanged('gravity'))
|
|
844
|
-
}, null, 8 /* PROPS */, ["modelValue"])]),
|
|
845
|
+
}, null, 8 /* PROPS */, ["modelValue", "min", "step"])]),
|
|
845
846
|
_: 1 /* STABLE */
|
|
846
847
|
})]),
|
|
847
848
|
_: 1 /* STABLE */
|
package/wireframesketch/index.js
CHANGED
|
@@ -303,12 +303,10 @@ var vue_i18n_cjs_js_ = __webpack_require__(7080);
|
|
|
303
303
|
|
|
304
304
|
|
|
305
305
|
|
|
306
|
-
//语言
|
|
307
|
-
|
|
308
306
|
const __default__ = {
|
|
309
307
|
name: "Kq3dWireframeSketch"
|
|
310
308
|
};
|
|
311
|
-
/* harmony default export */ var WireframeSketchvue_type_script_setup_true_lang_js = (
|
|
309
|
+
/* harmony default export */ var WireframeSketchvue_type_script_setup_true_lang_js = (/*#__PURE__*/Object.assign(__default__, {
|
|
312
310
|
props: {
|
|
313
311
|
// 默认显示线框图
|
|
314
312
|
isCheckFrameRender: {
|
|
@@ -352,16 +350,19 @@ const __default__ = {
|
|
|
352
350
|
setup(__props, {
|
|
353
351
|
expose: __expose
|
|
354
352
|
}) {
|
|
355
|
-
|
|
353
|
+
const props = __props;
|
|
354
|
+
const {
|
|
355
|
+
proxy
|
|
356
|
+
} = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.getCurrentInstance)();
|
|
357
|
+
//语言
|
|
358
|
+
let language = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(proxy.$i18n.global.messages[proxy.$i18n.global.locale]["webgl"]);
|
|
356
359
|
let currentLang = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)("");
|
|
357
360
|
let viewModel = null;
|
|
358
361
|
let ref_box = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
359
362
|
let checkbox_data = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(["2"]);
|
|
360
|
-
|
|
361
|
-
proxy
|
|
362
|
-
} = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.getCurrentInstance)();
|
|
363
|
+
|
|
363
364
|
// 获取组件传参
|
|
364
|
-
|
|
365
|
+
|
|
365
366
|
// 组件容器Ref
|
|
366
367
|
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
367
368
|
|