#include <SMESH_Mesh.hxx>
#include <SMESH_ControlsDef.hxx>
-#include <SMESHDS_Mesh.hxx>
-#include <SMDS_MeshElement.hxx>
-#include <SMDS_MeshNode.hxx>
-
#include <utilities.h>
#include <limits>
}
blsurf_set_param(bls, "hphydef", to_string(_phySize).c_str());
blsurf_set_param(bls, "hgeo_flag", to_string(_geometricMesh).c_str());
+ blsurf_set_param(bls, "relax_size", _decimesh ? "0": to_string(_geometricMesh).c_str());
blsurf_set_param(bls, "angle_meshs", to_string(_angleMeshS).c_str());
blsurf_set_param(bls, "angle_meshc", to_string(_angleMeshC).c_str());
blsurf_set_param(bls, "gradation", to_string(_gradation).c_str());
mesh_get_edge_tag(msh, it, &tag);
if (tags[vtx[0]]) {
- meshDS->SetNodeOnEdge(nodes[vtx[0]], TopoDS::Edge(emap(tag)));
+ Set_NodeOnEdge(meshDS, nodes[vtx[0]], emap(tag));
tags[vtx[0]] = false;
};
if (tags[vtx[1]]) {
- meshDS->SetNodeOnEdge(nodes[vtx[1]], TopoDS::Edge(emap(tag)));
+ Set_NodeOnEdge(meshDS, nodes[vtx[1]], emap(tag));
tags[vtx[1]] = false;
};
meshDS->SetMeshElementOnShape(edg, TopoDS::Edge(emap(tag)));
return true;
}
+//=============================================================================
+/*!
+ * SetNodeOnEdge
+ */
+//=============================================================================
+
+void BLSURFPlugin_BLSURF::Set_NodeOnEdge(SMESHDS_Mesh* meshDS, SMDS_MeshNode* node, const TopoDS_Shape& ed) {
+ const TopoDS_Edge edge = TopoDS::Edge(ed);
+
+ gp_Pnt pnt(node->X(), node->Y(), node->Z());
+
+ Standard_Real p0 = 0.0;
+ Standard_Real p1 = 1.0;
+ Handle(Geom_Curve) curve = BRep_Tool::Curve(edge, p0, p1);
+
+ GeomAPI_ProjectPointOnCurve proj(pnt, curve);
+
+ double pa = (double)proj.Parameter(1);
+
+ GProp_GProps LProps;
+ BRepGProp::LinearProperties(ed, LProps);
+ double lg = (double)LProps.Mass();
+
+ meshDS->SetNodeOnEdge(node, edge, pa);
+}
+
//=============================================================================
/*!
*
#include <Python.h>
#include "SMESH_2D_Algo.hxx"
#include "SMESH_Mesh.hxx"
+#include <SMESHDS_Mesh.hxx>
+#include <SMDS_MeshElement.hxx>
+#include <SMDS_MeshNode.hxx>
#include <SMESH_Gen_i.hxx>
#include <SALOMEconfig.h>
#include CORBA_CLIENT_HEADER(SALOMEDS)
#include CORBA_CLIENT_HEADER(GEOM_Gen)
#include "Utils_SALOME_Exception.hxx"
+
extern "C"{
+#include "distene/blsurf.h"
#include "distene/api.h"
}
protected:
const BLSURFPlugin_Hypothesis* _hypothesis;
+ private:
+ void Set_NodeOnEdge(SMESHDS_Mesh* meshDS, SMDS_MeshNode* node, const TopoDS_Shape& ed);
+
private:
PyObject * main_mod;
PyObject * main_dict;