/** * ════════════════════════════════════════════════════════════════ * FEAScript Core Library * Lightweight Finite Element Simulation in JavaScript * Version: 0.3.0 (RC) | https://feascript.com * MIT License © 2023–2026 FEAScript * ════════════════════════════════════════════════════════════════ */ /** * Function to re-export plotting functions in order to visualize solution fields */ export { plotSolution, plotInterpolatedSolution } from "./plotlyPlot.js"; export { plotSolutionVtk, plotInterpolatedSolutionVtk, createColorScale, createContourLineOptions, transformSolverOutputToVtkData, transformSolverOutputToVTP, transformSolverOutputToMLBuffers, } from "./vtkPlot.js";