mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-01-01 12:20:36 +05:00
132 lines
3.9 KiB
C++
Executable File
132 lines
3.9 KiB
C++
Executable File
// Copyright (C) 2005 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
|
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
|
|
//
|
|
// This library is free software; you can redistribute it and/or
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
// License as published by the Free Software Foundation; either
|
|
// version 2.1 of the License.
|
|
//
|
|
// This library is distributed in the hope that it will be useful
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
// Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
// License along with this library; if not, write to the Free Software
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
//
|
|
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
|
//
|
|
// File: GEOMAlgo_PassKeyShape.cxx
|
|
// Created:
|
|
// Author: Peter KURNEV
|
|
// <pkv@irinox>
|
|
|
|
|
|
#include <GEOMAlgo_PassKeyShape.ixx>
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
#include <TopTools_ListIteratorOfListOfShape.hxx>
|
|
#include <TColStd_ListOfInteger.hxx>
|
|
|
|
//=======================================================================
|
|
//function :
|
|
//purpose :
|
|
//=======================================================================
|
|
GEOMAlgo_PassKeyShape::GEOMAlgo_PassKeyShape()
|
|
:
|
|
GEOMAlgo_PassKey()
|
|
{
|
|
myUpper=432123;
|
|
GEOMAlgo_PassKey::Clear();
|
|
}
|
|
//=======================================================================
|
|
//function :SetIds
|
|
//purpose :
|
|
//=======================================================================
|
|
void GEOMAlgo_PassKeyShape::SetIds(const TopoDS_Shape& aS1)
|
|
|
|
{
|
|
Standard_Integer anId1;
|
|
//
|
|
anId1=aS1.HashCode(myUpper);
|
|
GEOMAlgo_PassKey::SetIds(anId1);
|
|
}
|
|
//=======================================================================
|
|
//function :SetIds
|
|
//purpose :
|
|
//=======================================================================
|
|
void GEOMAlgo_PassKeyShape::SetIds(const TopoDS_Shape& aS1,
|
|
const TopoDS_Shape& aS2)
|
|
{
|
|
Standard_Integer anId1, anId2;
|
|
//
|
|
anId1=aS1.HashCode(myUpper);
|
|
anId2=aS2.HashCode(myUpper);
|
|
//
|
|
GEOMAlgo_PassKey::SetIds(anId1, anId2);
|
|
}
|
|
//=======================================================================
|
|
//function :SetIds
|
|
//purpose :
|
|
//=======================================================================
|
|
void GEOMAlgo_PassKeyShape::SetIds(const TopoDS_Shape& aS1,
|
|
const TopoDS_Shape& aS2,
|
|
const TopoDS_Shape& aS3)
|
|
{
|
|
Standard_Integer anId1, anId2, anId3;
|
|
//
|
|
anId1=aS1.HashCode(myUpper);
|
|
anId2=aS2.HashCode(myUpper);
|
|
anId3=aS3.HashCode(myUpper);
|
|
//
|
|
GEOMAlgo_PassKey::SetIds(anId1, anId2, anId3);
|
|
}
|
|
//=======================================================================
|
|
//function :SetIds
|
|
//purpose :
|
|
//=======================================================================
|
|
void GEOMAlgo_PassKeyShape::SetIds(const TopoDS_Shape& aS1,
|
|
const TopoDS_Shape& aS2,
|
|
const TopoDS_Shape& aS3,
|
|
const TopoDS_Shape& aS4)
|
|
{
|
|
Standard_Integer anId1, anId2, anId3, anId4;
|
|
//
|
|
anId1=aS1.HashCode(myUpper);
|
|
anId2=aS2.HashCode(myUpper);
|
|
anId3=aS3.HashCode(myUpper);
|
|
anId4=aS4.HashCode(myUpper);
|
|
//
|
|
GEOMAlgo_PassKey::SetIds(anId1, anId2, anId3, anId4);
|
|
}
|
|
//=======================================================================
|
|
//function :SetIds
|
|
//purpose :
|
|
//=======================================================================
|
|
void GEOMAlgo_PassKeyShape::SetIds(const TopTools_ListOfShape& aLS)
|
|
{
|
|
Standard_Integer anId;
|
|
TopTools_ListIteratorOfListOfShape aIt;
|
|
TColStd_ListOfInteger aLI;
|
|
//
|
|
//aNb=aLS.Extent();
|
|
//if (aNb<1 || aNb > myNbMax) {
|
|
// return;
|
|
//}
|
|
//
|
|
//myNbIds=aNb;
|
|
//mySum=0;
|
|
//i=myNbMax-myNbIds;
|
|
|
|
aIt.Initialize(aLS);
|
|
for (; aIt.More(); aIt.Next()) {
|
|
const TopoDS_Shape& aS=aIt.Value();
|
|
anId=aS.HashCode(myUpper);
|
|
aLI.Append(anId);
|
|
}
|
|
GEOMAlgo_PassKey::SetIds(aLI);
|
|
}
|