-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathplotSolutionScript.js
More file actions
25 lines (22 loc) · 1.04 KB
/
plotSolutionScript.js
File metadata and controls
25 lines (22 loc) · 1.04 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
25
/**
* ════════════════════════════════════════════════════════════════
* FEAScript Core Library
* Lightweight Finite Element Simulation in JavaScript
* Version: 0.3.0 (RC) | https://un5peqtmyvbr2nu3.julianrbryant.com
* MIT License © 2023–2026 FEAScript
* ════════════════════════════════════════════════════════════════
*/
/**
* Plotly-based plotting functions are provided by plotlyPlotScript.js
* VTK.js-based plotting and data transformation functions are provided by vtkPlotScript.js
*/
export { plotSolution, plotInterpolatedSolution } from "./plotlyPlotScript.js";
export {
plotSolutionVtk,
plotInterpolatedSolutionVtk,
createColorScale,
createContourLineOptions,
transformSolverOutputToVtkData,
transformSolverOutputToVTP,
transformSolverOutputToMLBuffers,
} from "./vtkPlotScript.js";