-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathindex.js
More file actions
24 lines (23 loc) · 1.13 KB
/
index.js
File metadata and controls
24 lines (23 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/**
* ════════════════════════════════════════════════════════════════
* FEAScript Core Library
* Lightweight Finite Element Simulation in JavaScript
* Version: 0.3.0 (RC) | https://feascript.com
* MIT License © 2023–2026 FEAScript
* ════════════════════════════════════════════════════════════════
*/
export { FEAScriptModel } from "./FEAScript.js";
export { importGmshMesh } from "./readers/gmshReader.js";
export { logSystem } from "./utilities/logging.js";
export { plotSolution, plotInterpolatedSolution } from "./visualization/plotlyPlot.js";
export {
plotSolutionVtk,
plotInterpolatedSolutionVtk,
createColorScale,
createContourLineOptions,
transformSolverOutputToVtkData,
transformSolverOutputToVTP,
transformSolverOutputToMLBuffers,
} from "./visualization/vtkPlot.js";
export { FEAScriptWorker } from "./workers/worker.js";
export const printVersion = "0.3.0 (RC)";