w-mesh-tecplot 1.0.7 → 1.0.8
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/convertColumn.mjs +1 -2
|
@@ -263,7 +263,7 @@ export default WMeshTecplot
|
|
|
263
263
|
<br class="clear">
|
|
264
264
|
|
|
265
265
|
<footer>
|
|
266
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sat Oct 04 2025
|
|
266
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sat Oct 04 2025 22:11:48 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
267
267
|
</footer>
|
|
268
268
|
|
|
269
269
|
<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 Sat Oct 04 2025
|
|
645
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sat Oct 04 2025 22:11:48 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 Sat Oct 04 2025
|
|
74
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sat Oct 04 2025 22:11:48 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/convertColumn.mjs
CHANGED
|
@@ -2,7 +2,7 @@ import get from 'lodash-es/get.js'
|
|
|
2
2
|
import each from 'lodash-es/each.js'
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
function convertColumn(
|
|
5
|
+
function convertColumn(eles) {
|
|
6
6
|
|
|
7
7
|
//ns, es
|
|
8
8
|
let ns = []
|
|
@@ -83,7 +83,6 @@ function convertColumn(name, eles) {
|
|
|
83
83
|
})
|
|
84
84
|
|
|
85
85
|
return {
|
|
86
|
-
name,
|
|
87
86
|
nodes: ns,
|
|
88
87
|
eles: es,
|
|
89
88
|
}
|