1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-21 10:13:43 +03:00
occt/src/BRepGProp/BRepGProp_Sinert.cxx
azn 9bd59d1c5b 0025630: Possible memory leaks in BRepGProp_Vinert and BRepGProp_Sinert
Code refactoring of BRepGProp_Sinert and BRepGProp_Vinert classes.
- All static variables have been removed.
- Common functionality connected with Gauss integration has beem moved from BRepGProp_Sinert and BRepGProp_Vinert classes to the new BRepGProp_Gauss class.

Slight changes in the comments.

Fix compilation error.

Fix Sinert errors. Rebased on new master.

Elimination of constant conditional expression warnings.

Small fix in comment.
2015-03-19 17:08:13 +03:00

139 lines
5.0 KiB
C++

// Copyright (c) 1995-1999 Matra Datavision
// Copyright (c) 1999-2014 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License version 2.1 as published
// by the Free Software Foundation, with special exception defined in the file
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
// distribution for complete text of the license and disclaimer of any warranty.
//
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.
#include<BRepGProp_Sinert.ixx>
#include<BRepGProp_Gauss.hxx>
//=======================================================================
//function : BRepGProp_Sinert
//purpose : Constructor
//=======================================================================
BRepGProp_Sinert::BRepGProp_Sinert()
{
}
//=======================================================================
//function : BRepGProp_Sinert
//purpose : Constructor
//=======================================================================
BRepGProp_Sinert::BRepGProp_Sinert (const BRepGProp_Face& theSurface,
const gp_Pnt& theLocation)
{
SetLocation(theLocation);
Perform(theSurface);
}
//=======================================================================
//function : BRepGProp_Sinert
//purpose : Constructor
//=======================================================================
BRepGProp_Sinert::BRepGProp_Sinert(BRepGProp_Face& theSurface,
BRepGProp_Domain& theDomain,
const gp_Pnt& theLocation)
{
SetLocation(theLocation);
Perform(theSurface, theDomain);
}
//=======================================================================
//function : BRepGProp_Sinert
//purpose : Constructor
//=======================================================================
BRepGProp_Sinert::BRepGProp_Sinert(BRepGProp_Face& theSurface,
const gp_Pnt& theLocation,
const Standard_Real theEps)
{
SetLocation(theLocation);
Perform(theSurface, theEps);
}
//=======================================================================
//function : BRepGProp_Sinert
//purpose : Constructor
//=======================================================================
BRepGProp_Sinert::BRepGProp_Sinert(BRepGProp_Face& theSurface,
BRepGProp_Domain& theDomain,
const gp_Pnt& theLocation,
const Standard_Real theEps)
{
SetLocation(theLocation);
Perform(theSurface, theDomain, theEps);
}
//=======================================================================
//function : SetLocation
//purpose :
//=======================================================================
void BRepGProp_Sinert::SetLocation(const gp_Pnt& theLocation)
{
loc = theLocation;
}
//=======================================================================
//function : Perform
//purpose :
//=======================================================================
void BRepGProp_Sinert::Perform(const BRepGProp_Face& theSurface)
{
myEpsilon = 1.0;
BRepGProp_Gauss aGauss(BRepGProp_Gauss::Sinert);
aGauss.Compute(theSurface, loc, dim, g, inertia);
}
//=======================================================================
//function : Perform
//purpose :
//=======================================================================
void BRepGProp_Sinert::Perform(BRepGProp_Face& theSurface,
BRepGProp_Domain& theDomain)
{
myEpsilon = 1.0;
BRepGProp_Gauss aGauss(BRepGProp_Gauss::Sinert);
aGauss.Compute(theSurface, theDomain, loc, dim, g, inertia);
}
//=======================================================================
//function : Perform
//purpose :
//=======================================================================
Standard_Real BRepGProp_Sinert::Perform(BRepGProp_Face& theSurface,
const Standard_Real theEps)
{
BRepGProp_Domain anEmptyDomian;
return Perform(theSurface, anEmptyDomian, theEps);
}
//=======================================================================
//function : Perform
//purpose :
//=======================================================================
Standard_Real BRepGProp_Sinert::Perform(BRepGProp_Face& theSurface,
BRepGProp_Domain& theDomain,
const Standard_Real theEps)
{
BRepGProp_Gauss aGauss(BRepGProp_Gauss::Sinert);
return myEpsilon = aGauss.Compute(theSurface, theDomain, loc, theEps, dim, g, inertia);
}
//=======================================================================
//function : GetEpsilon
//purpose :
//=======================================================================
Standard_Real BRepGProp_Sinert::GetEpsilon()
{
return myEpsilon;
}