mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-05-06 10:36:12 +03:00
Update empty method guards to new style with regex (see PR). Used clang-format 18.1.8. New actions to validate code formatting is added. Update .clang-format with disabling of include sorting. It is temporary changes, then include will be sorted. Apply formatting for /src and /tools folder. The files with .hxx,.cxx,.lxx,.h,.pxx,.hpp,*.cpp extensions.
105 lines
3.3 KiB
C++
105 lines
3.3 KiB
C++
// Created on: 1995-05-05
|
|
// Created by: Christophe MARION
|
|
// 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 <HLRAlgo_PolyShellData.hxx>
|
|
|
|
#include <HLRAlgo_BiPoint.hxx>
|
|
#include <HLRAlgo_ListIteratorOfListOfBPoint.hxx>
|
|
|
|
IMPLEMENT_STANDARD_RTTIEXT(HLRAlgo_PolyShellData, Standard_Transient)
|
|
|
|
//=================================================================================================
|
|
|
|
HLRAlgo_PolyShellData::HLRAlgo_PolyShellData(const Standard_Integer nbFace)
|
|
: myPolyg(1, nbFace)
|
|
{
|
|
}
|
|
|
|
//=================================================================================================
|
|
|
|
void HLRAlgo_PolyShellData::UpdateGlobalMinMax(HLRAlgo_PolyData::Box& theBox)
|
|
{
|
|
HLRAlgo_ListIteratorOfListOfBPoint it;
|
|
|
|
for (it.Initialize(mySegList); it.More(); it.Next())
|
|
{
|
|
HLRAlgo_BiPoint& BP = it.ChangeValue();
|
|
HLRAlgo_BiPoint::PointsT& aPoints = BP.Points();
|
|
if (aPoints.PntP1.X() < aPoints.PntP2.X())
|
|
{
|
|
if (theBox.XMin > aPoints.PntP1.X())
|
|
theBox.XMin = aPoints.PntP1.X();
|
|
else if (theBox.XMax < aPoints.PntP2.X())
|
|
theBox.XMax = aPoints.PntP2.X();
|
|
}
|
|
else
|
|
{
|
|
if (theBox.XMin > aPoints.PntP2.X())
|
|
theBox.XMin = aPoints.PntP2.X();
|
|
else if (theBox.XMax < aPoints.PntP1.X())
|
|
theBox.XMax = aPoints.PntP1.X();
|
|
}
|
|
if (aPoints.PntP1.Y() < aPoints.PntP2.Y())
|
|
{
|
|
if (theBox.YMin > aPoints.PntP1.Y())
|
|
theBox.YMin = aPoints.PntP1.Y();
|
|
else if (theBox.YMax < aPoints.PntP2.Y())
|
|
theBox.YMax = aPoints.PntP2.Y();
|
|
}
|
|
else
|
|
{
|
|
if (theBox.YMin > aPoints.PntP2.Y())
|
|
theBox.YMin = aPoints.PntP2.Y();
|
|
else if (theBox.YMax < aPoints.PntP1.Y())
|
|
theBox.YMax = aPoints.PntP1.Y();
|
|
}
|
|
if (aPoints.PntP1.Z() < aPoints.PntP2.Z())
|
|
{
|
|
if (theBox.ZMin > aPoints.PntP1.Z())
|
|
theBox.ZMin = aPoints.PntP1.Z();
|
|
else if (theBox.ZMax < aPoints.PntP2.Z())
|
|
theBox.ZMax = aPoints.PntP2.Z();
|
|
}
|
|
else
|
|
{
|
|
if (theBox.ZMin > aPoints.PntP2.Z())
|
|
theBox.ZMin = aPoints.PntP2.Z();
|
|
else if (theBox.ZMax < aPoints.PntP1.Z())
|
|
theBox.ZMax = aPoints.PntP1.Z();
|
|
}
|
|
}
|
|
for (Standard_Integer i = myPolyg.Lower(); i <= myPolyg.Upper(); i++)
|
|
{
|
|
const Handle(HLRAlgo_PolyData)& aPd = myPolyg.ChangeValue(i);
|
|
aPd->UpdateGlobalMinMax(theBox);
|
|
}
|
|
}
|
|
|
|
//=================================================================================================
|
|
|
|
void HLRAlgo_PolyShellData::UpdateHiding(const Standard_Integer nbHiding)
|
|
{
|
|
if (nbHiding > 0)
|
|
{
|
|
myHPolHi.Resize(1, nbHiding, false);
|
|
}
|
|
else
|
|
{
|
|
NCollection_Array1<Handle(HLRAlgo_PolyData)> anEmpty;
|
|
myHPolHi.Move(anEmpty);
|
|
}
|
|
}
|