mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-13 02:00:34 +05:00
remove compilation error on Windows
This commit is contained in:
parent
8a7fc527d7
commit
2fa6f3c92b
@ -5121,7 +5121,7 @@ struct SMESH_NodeSearcherImpl: public SMESH_NodeSearcher
|
|||||||
{
|
{
|
||||||
SMDS_MeshNode tgtNode( thePnt.X(), thePnt.Y(), thePnt.Z() );
|
SMDS_MeshNode tgtNode( thePnt.X(), thePnt.Y(), thePnt.Z() );
|
||||||
list<const SMDS_MeshNode*> nodes;
|
list<const SMDS_MeshNode*> nodes;
|
||||||
const double precision = 1e-6;
|
//const double precision = 1e-6;
|
||||||
//myOctreeNode->NodesAround( &tgtNode, &nodes, precision );
|
//myOctreeNode->NodesAround( &tgtNode, &nodes, precision );
|
||||||
|
|
||||||
double minSqDist = DBL_MAX;
|
double minSqDist = DBL_MAX;
|
||||||
@ -8239,7 +8239,7 @@ bool SMESH_MeshEditor::doubleNodes( SMESHDS_Mesh* theMeshDS,
|
|||||||
{
|
{
|
||||||
// iterate on through element and duplicate them (by nodes duplication)
|
// iterate on through element and duplicate them (by nodes duplication)
|
||||||
bool res = false;
|
bool res = false;
|
||||||
const TIDSortedElemSet::iterator elemItr = theElems.begin();
|
TIDSortedElemSet::const_iterator elemItr = theElems.begin();
|
||||||
for ( ; elemItr != theElems.end(); ++elemItr )
|
for ( ; elemItr != theElems.end(); ++elemItr )
|
||||||
{
|
{
|
||||||
const SMDS_MeshElement* anElem = *elemItr;
|
const SMDS_MeshElement* anElem = *elemItr;
|
||||||
@ -8329,7 +8329,7 @@ bool SMESH_MeshEditor::DoubleNodesInRegion( const TIDSortedElemSet& theElems,
|
|||||||
|
|
||||||
// iterates on indicated elements and get elements by back references from their nodes
|
// iterates on indicated elements and get elements by back references from their nodes
|
||||||
TIDSortedElemSet anAffected;
|
TIDSortedElemSet anAffected;
|
||||||
const TIDSortedElemSet::iterator elemItr = theElems.begin();
|
TIDSortedElemSet::const_iterator elemItr = theElems.begin();
|
||||||
for ( ; elemItr != theElems.end(); ++elemItr )
|
for ( ; elemItr != theElems.end(); ++elemItr )
|
||||||
{
|
{
|
||||||
SMDS_MeshElement* anElem = (SMDS_MeshElement*)*elemItr;
|
SMDS_MeshElement* anElem = (SMDS_MeshElement*)*elemItr;
|
||||||
|
Loading…
Reference in New Issue
Block a user