w-mesh-tecplot 1.0.9 → 1.0.10
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/w-mesh-tecplot.umd.js +1 -1
- package/docs/WMeshTecplot.mjs.html +1 -1
- package/docs/global.html +1 -1
- package/docs/index.html +1 -1
- package/package.json +1 -1
- package/src/execExportPng.mjs +5 -2
|
@@ -264,7 +264,7 @@ export default WMeshTecplot
|
|
|
264
264
|
<br class="clear">
|
|
265
265
|
|
|
266
266
|
<footer>
|
|
267
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Tue Oct 07 2025
|
|
267
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Tue Oct 07 2025 11:03:28 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
268
268
|
</footer>
|
|
269
269
|
|
|
270
270
|
<script>prettyPrint();</script>
|
package/docs/global.html
CHANGED
|
@@ -642,7 +642,7 @@
|
|
|
642
642
|
<br class="clear">
|
|
643
643
|
|
|
644
644
|
<footer>
|
|
645
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Tue Oct 07 2025
|
|
645
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Tue Oct 07 2025 11:03:28 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
646
646
|
</footer>
|
|
647
647
|
|
|
648
648
|
<script>prettyPrint();</script>
|
package/docs/index.html
CHANGED
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
<br class="clear">
|
|
72
72
|
|
|
73
73
|
<footer>
|
|
74
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Tue Oct 07 2025
|
|
74
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Tue Oct 07 2025 11:03:28 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
75
75
|
</footer>
|
|
76
76
|
|
|
77
77
|
<script>prettyPrint();</script>
|
package/package.json
CHANGED
package/src/execExportPng.mjs
CHANGED
|
@@ -38,12 +38,15 @@ let execExportPng = async(fpLay, fpOut, opt = {}) => {
|
|
|
38
38
|
//fpLay
|
|
39
39
|
fpLay = path.resolve(fpLay)
|
|
40
40
|
|
|
41
|
+
//id
|
|
42
|
+
let id = now2strp()
|
|
43
|
+
|
|
41
44
|
//fpTempPng
|
|
42
|
-
let fpTempPng = `./_tecplot_pic_${
|
|
45
|
+
let fpTempPng = `./_tecplot_pic_${id}.png`
|
|
43
46
|
fpTempPng = path.resolve(fpTempPng)
|
|
44
47
|
|
|
45
48
|
//fpTempMcr
|
|
46
|
-
let fpTempMcr = `./_tecplot_export_${
|
|
49
|
+
let fpTempMcr = `./_tecplot_export_${id}.mcr`
|
|
47
50
|
fpTempMcr = path.resolve(fpTempMcr)
|
|
48
51
|
|
|
49
52
|
if (true) {
|