-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
233 additions
and
238 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
package: | ||
name: smesh4pyocct | ||
version: "9.7.0.2" | ||
version: "9.8.0.0" | ||
|
||
source: | ||
path: ../.. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule Geom
updated
from 8687a5 to 71b630
Submodule Kernel
updated
from 665f7c to 9dd760
Submodule NETGENPlugin
updated
from c0a871 to 11f59d
Submodule SMESH
updated
from d7de79 to 98cff9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
diff --git a/src/NETGENPlugin/NETGENPlugin_Mesher.cxx b/src/NETGENPlugin/NETGENPlugin_Mesher.cxx | ||
--- a/src/NETGENPlugin/NETGENPlugin_Mesher.cxx | ||
+++ b/src/NETGENPlugin/NETGENPlugin_Mesher.cxx | ||
@@ -41,14 +41,14 @@ | ||
#include <SMESH_ComputeError.hxx> | ||
#include <SMESH_ControlPnt.hxx> | ||
#include <SMESH_File.hxx> | ||
-#include <SMESH_Gen_i.hxx> | ||
+#include <SMESH_Gen.hxx> | ||
#include <SMESH_Mesh.hxx> | ||
#include <SMESH_MesherHelper.hxx> | ||
#include <SMESH_subMesh.hxx> | ||
#include <StdMeshers_QuadToTriaAdaptor.hxx> | ||
#include <StdMeshers_ViscousLayers2D.hxx> | ||
|
||
-#include <SALOMEDS_Tool.hxx> | ||
+// #include <SALOMEDS_Tool.hxx> | ||
|
||
#include <utilities.h> | ||
|
||
@@ -659,6 +659,7 @@ void NETGENPlugin_Mesher::SetParameters(const NETGENPlugin_Hypothesis* hyp) | ||
// const char* | ||
mparams.meshsizefilename= hyp->GetMeshSizeFile().empty() ? 0 : hyp->GetMeshSizeFile().c_str(); | ||
#endif | ||
+ /* | ||
const NETGENPlugin_Hypothesis::TLocalSize& localSizes = hyp->GetLocalSizesAndEntries(); | ||
if ( !localSizes.empty() ) | ||
{ | ||
@@ -680,6 +681,7 @@ void NETGENPlugin_Mesher::SetParameters(const NETGENPlugin_Hypothesis* hyp) | ||
setLocalSize(S, val); | ||
} | ||
} | ||
+ */ | ||
} | ||
|
||
#ifdef NETGEN_V6 | ||
@@ -4554,6 +4556,8 @@ void NETGENPlugin_NetgenLibWrapper::CalcLocalH( netgen::Mesh * ngMesh ) | ||
|
||
std::string NETGENPlugin_NetgenLibWrapper::getOutputFileName() | ||
{ | ||
+ return ""; | ||
+ /* | ||
std::string aTmpDir = SALOMEDS_Tool::GetTmpDir(); | ||
|
||
TCollection_AsciiString aGenericName = aTmpDir.c_str(); | ||
@@ -4568,6 +4572,7 @@ std::string NETGENPlugin_NetgenLibWrapper::getOutputFileName() | ||
aGenericName += ".out"; | ||
|
||
return aGenericName.ToCString(); | ||
+ */ | ||
} | ||
|
||
//================================================================================ | ||
@@ -4607,6 +4612,7 @@ void NETGENPlugin_NetgenLibWrapper::removeOutputFile() | ||
netgen::myerr = _ngcerr; | ||
_ngcout = 0; | ||
} | ||
+ /* | ||
string tmpDir = SALOMEDS_Tool::GetDirFromPath ( _outputFileName ); | ||
string aFileName = SALOMEDS_Tool::GetNameFromPath( _outputFileName ) + ".out"; | ||
SALOMEDS_Tool::ListOfFiles aFiles; | ||
@@ -4614,5 +4620,6 @@ void NETGENPlugin_NetgenLibWrapper::removeOutputFile() | ||
aFiles.push_back(aFileName.c_str()); | ||
|
||
SALOMEDS_Tool::RemoveTemporaryFiles( tmpDir.c_str(), aFiles, true ); | ||
+ */ | ||
} | ||
-} | ||
+} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
diff --git a/src/SMDS/SMDS_UnstructuredGrid.hxx b/src/SMDS/SMDS_UnstructuredGrid.hxx | ||
--- a/src/SMDS/SMDS_UnstructuredGrid.hxx | ||
+++ b/src/SMDS/SMDS_UnstructuredGrid.hxx | ||
@@ -24,10 +24,13 @@ | ||
#ifndef _SMDS_UNSTRUCTUREDGRID_HXX | ||
#define _SMDS_UNSTRUCTUREDGRID_HXX | ||
|
||
#include "SMESH_SMDS.hxx" | ||
|
||
+ // Fix for https://discourse.vtk.org/t/compilation-error-include-limits-required-in-several-files/6496 | ||
+#include <limits> | ||
+ | ||
#include <vtkUnstructuredGrid.h> | ||
#include <vtkCellLinks.h> | ||
#include <smIdType.hxx> | ||
|
||
#include <vector> |
Oops, something went wrong.