From 421fbdf198d61a6eef6c108b23c0b420f3b3126c Mon Sep 17 00:00:00 2001 From: Knut Morten Okstad Date: Fri, 4 Mar 2022 07:43:04 +0100 Subject: [PATCH] Changed: Enable MathJax for equation rendering --- doc/Doxyfile.in | 3 +++ src/ASM/LR/ASMu3D.h | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/Doxyfile.in b/doc/Doxyfile.in index 7fd69baf..ae2f00b8 100644 --- a/doc/Doxyfile.in +++ b/doc/Doxyfile.in @@ -1050,6 +1050,9 @@ LATEX_BATCHMODE = NO LATEX_HIDE_INDICES = NO +# To render equations in the browser instead of generating png-files +USE_MATHJAX = TRUE + #--------------------------------------------------------------------------- # configuration options related to the RTF output #--------------------------------------------------------------------------- diff --git a/src/ASM/LR/ASMu3D.h b/src/ASM/LR/ASMu3D.h index e131321b..081127e3 100644 --- a/src/ASM/LR/ASMu3D.h +++ b/src/ASM/LR/ASMu3D.h @@ -120,7 +120,7 @@ public: //! \param[in] orient Local orientation of indices, see ASMLRSpline::Sort() //! \param[in] local If \e true, return patch-local numbers //! \param[in] open If \e true, exclude edge end points - virtual void getBoundary1Nodes(int lIndex, IntVec& nodes, int basis, + virtual void getBoundary1Nodes(int lEdge, IntVec& nodes, int basis, int orient, bool local, bool open = false) const;