mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-01-27 17:40:34 +05:00
Remove compilation warnings
This commit is contained in:
parent
23dc5a230c
commit
241153143e
@ -110,7 +110,7 @@ TopAbs_State GEOMAlgo_FinderShapeOnQuad::GetPointState(const gp_Pnt& aP)
|
|||||||
// In the case of concave quadrangle, return IN if
|
// In the case of concave quadrangle, return IN if
|
||||||
// aP is OUT of only one concave side
|
// aP is OUT of only one concave side
|
||||||
double nbIn = 0.;
|
double nbIn = 0.;
|
||||||
for ( int i = 0; i < myPlanes.size(); ++i )
|
for ( size_t i = 0; i < myPlanes.size(); ++i )
|
||||||
{
|
{
|
||||||
TopAbs_State aSt;
|
TopAbs_State aSt;
|
||||||
GEOMAlgo_SurfaceTools::GetState(aP, myPlanes[i], myTolerance, aSt);
|
GEOMAlgo_SurfaceTools::GetState(aP, myPlanes[i], myTolerance, aSt);
|
||||||
|
@ -125,7 +125,7 @@ const NMTTools_CoupleOfShape& GEOMAlgo_GetInPlaceIterator::Value()const
|
|||||||
Standard_Integer TypeToInteger(const TopAbs_ShapeEnum aType1,
|
Standard_Integer TypeToInteger(const TopAbs_ShapeEnum aType1,
|
||||||
const TopAbs_ShapeEnum aType2)
|
const TopAbs_ShapeEnum aType2)
|
||||||
{
|
{
|
||||||
Standard_Integer iRet, iT1, iT2, iX;
|
Standard_Integer iRet;
|
||||||
//
|
//
|
||||||
iRet=-1;
|
iRet=-1;
|
||||||
//
|
//
|
||||||
|
@ -511,8 +511,7 @@ void GEOMAlgo_GlueDetector::CheckDetected
|
|||||||
const TopTools_IndexedDataMapOfShapeListOfShape& aMVE,
|
const TopTools_IndexedDataMapOfShapeListOfShape& aMVE,
|
||||||
const TopTools_IndexedDataMapOfShapeListOfShape& aMEV)
|
const TopTools_IndexedDataMapOfShapeListOfShape& aMEV)
|
||||||
{
|
{
|
||||||
Standard_Integer i, aNbVSD, aNbA, iRet;
|
Standard_Integer aNbVSD, iRet;
|
||||||
TopAbs_ShapeEnum aTypeS, aTypeA[2];
|
|
||||||
TopExp_Explorer aExp, aExpA;
|
TopExp_Explorer aExp, aExpA;
|
||||||
TopTools_MapOfShape aMFence, aMVSD;
|
TopTools_MapOfShape aMFence, aMVSD;
|
||||||
TopTools_ListOfShape aLV;
|
TopTools_ListOfShape aLV;
|
||||||
|
@ -100,7 +100,6 @@ void GEOMAlgo_Gluer2::MakeFace(const TopoDS_Face& theF,
|
|||||||
Standard_Boolean bIsToReverse, bIsUPeriodic;
|
Standard_Boolean bIsToReverse, bIsUPeriodic;
|
||||||
Standard_Integer iRet;
|
Standard_Integer iRet;
|
||||||
Standard_Real aTol, aUMin, aUMax, aVMin, aVMax;
|
Standard_Real aTol, aUMin, aUMax, aVMin, aVMax;
|
||||||
TopAbs_Orientation aOrE;
|
|
||||||
Handle(Geom_Surface) aS;
|
Handle(Geom_Surface) aS;
|
||||||
TopLoc_Location aLoc;
|
TopLoc_Location aLoc;
|
||||||
TopoDS_Shape aW, aWr;
|
TopoDS_Shape aW, aWr;
|
||||||
|
Loading…
Reference in New Issue
Block a user