Skip to content
Snippets Groups Projects
Commit 4ee184c9 authored by Amaury Johnen's avatar Amaury Johnen
Browse files

No commit message

No commit message
parent 534bacb8
No related branches found
No related tags found
No related merge requests found
...@@ -571,9 +571,9 @@ static fullMatrix<double> gmshGeneratePointsTriangle(int order, bool serendip) ...@@ -571,9 +571,9 @@ static fullMatrix<double> gmshGeneratePointsTriangle(int order, bool serendip)
point(0, 0) = 0; point(0, 0) = 0;
point(0, 1) = 0; point(0, 1) = 0;
double dd = 1. / order;
if (order > 0) { if (order > 0) {
double dd = 1. / order;
point(1, 0) = 1; point(1, 0) = 1;
point(1, 1) = 0; point(1, 1) = 0;
point(2, 0) = 0; point(2, 0) = 0;
......
...@@ -24,6 +24,7 @@ set(SRC ...@@ -24,6 +24,7 @@ set(SRC
HarmonicToTime.cpp ModulusPhase.cpp HarmonicToTime.cpp ModulusPhase.cpp
HomologyComputation.cpp HomologyComputation.cpp
Distance.cpp ExtractEdges.cpp Distance.cpp ExtractEdges.cpp
AnalyseCurvedMesh.cpp
) )
file(GLOB HDR RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.h) file(GLOB HDR RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.h)
......
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
#include "CutParametric.h" #include "CutParametric.h"
#include "CutSphere.h" #include "CutSphere.h"
#include "Skin.h" #include "Skin.h"
#include "AnalyseCurvedMesh.h"
#include "MathEval.h" #include "MathEval.h"
#include "ExtractElements.h" #include "ExtractElements.h"
#include "HarmonicToTime.h" #include "HarmonicToTime.h"
...@@ -163,6 +164,8 @@ void PluginManager::registerDefaultPlugins() ...@@ -163,6 +164,8 @@ void PluginManager::registerDefaultPlugins()
("Skin", GMSH_RegisterSkinPlugin())); ("Skin", GMSH_RegisterSkinPlugin()));
allPlugins.insert(std::pair<std::string, GMSH_Plugin*> allPlugins.insert(std::pair<std::string, GMSH_Plugin*>
("MathEval", GMSH_RegisterMathEvalPlugin())); ("MathEval", GMSH_RegisterMathEvalPlugin()));
allPlugins.insert(std::pair<std::string, GMSH_Plugin*>
("AnalyseCurvedMesh", GMSH_RegisterAnalyseCurvedMeshPlugin()));
allPlugins.insert(std::pair<std::string, GMSH_Plugin*> allPlugins.insert(std::pair<std::string, GMSH_Plugin*>
("ModifyComponent", GMSH_RegisterModifyComponentPlugin())); ("ModifyComponent", GMSH_RegisterModifyComponentPlugin()));
allPlugins.insert(std::pair<std::string, GMSH_Plugin*> allPlugins.insert(std::pair<std::string, GMSH_Plugin*>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment