1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/src/Law/Law_Composite.cxx
dpasukhi a5a7b3185b Coding - Apply .clang-format formatting #286
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.
2025-01-26 00:43:57 +00:00

247 lines
6.8 KiB
C++

// Created on: 1996-03-29
// Created by: Laurent BOURESCHE
// Copyright (c) 1996-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.
// pmn -> 17/01/1996 added : Continuity, (Nb)Intervals, D2, Trim
#include <ElCLib.hxx>
#include <Law_Composite.hxx>
#include <Law_Function.hxx>
#include <Law_Laws.hxx>
#include <Standard_NotImplemented.hxx>
#include <Standard_Type.hxx>
#include <TColStd_HArray1OfReal.hxx>
IMPLEMENT_STANDARD_RTTIEXT(Law_Composite, Law_Function)
//=================================================================================================
Law_Composite::Law_Composite()
: first(-1.e100),
last(1.e100),
periodic(Standard_False),
TFirst(-1.e100),
TLast(1.e100),
PTol(0.)
{
}
//=================================================================================================
Law_Composite::Law_Composite(const Standard_Real First,
const Standard_Real Last,
const Standard_Real Tol)
: first(-1.e100),
last(1.e100),
periodic(Standard_False),
TFirst(First),
TLast(Last),
PTol(Tol)
{
}
//=================================================================================================
GeomAbs_Shape Law_Composite::Continuity() const
{
throw Standard_NotImplemented("Law_Composite::Continuity()");
}
//=======================================================================
// function : NbIntervals
// purpose : On ne se casse pas la tete, on decoupe pour chaque composant
//=======================================================================
Standard_Integer Law_Composite::NbIntervals(const GeomAbs_Shape S) const
{
Law_ListIteratorOfLaws It(funclist);
Handle(Law_Function) func;
Standard_Integer nbr_interval = 0;
for (; It.More(); It.Next())
{
func = It.Value();
nbr_interval += func->NbIntervals(S);
}
return nbr_interval;
}
//=======================================================================
// function : Intervals
// purpose : Meme simplifications....
//=======================================================================
void Law_Composite::Intervals(TColStd_Array1OfReal& T, const GeomAbs_Shape S) const
{
Law_ListIteratorOfLaws It(funclist);
Handle(Law_Function) func;
Handle(TColStd_HArray1OfReal) LocT;
Standard_Integer nb_index, Iloc, IGlob = 2;
func = funclist.First();
func->Bounds(T(1), T(2));
for (; It.More(); It.Next())
{
func = It.Value();
nb_index = func->NbIntervals(S) + 1;
LocT = new (TColStd_HArray1OfReal)(1, nb_index);
func->Intervals(LocT->ChangeArray1(), S);
for (Iloc = 2; Iloc <= nb_index; Iloc++, IGlob++)
{
T(IGlob) = LocT->Value(Iloc);
}
}
}
//=================================================================================================
Standard_Real Law_Composite::Value(const Standard_Real X)
{
Standard_Real W = X;
Prepare(W);
return curfunc->Value(W);
}
//=================================================================================================
void Law_Composite::D1(const Standard_Real X, Standard_Real& F, Standard_Real& D)
{
Standard_Real W = X;
Prepare(W);
curfunc->D1(W, F, D);
}
//=================================================================================================
void Law_Composite::D2(const Standard_Real X, Standard_Real& F, Standard_Real& D, Standard_Real& D2)
{
Standard_Real W = X;
Prepare(W);
curfunc->D2(W, F, D, D2);
}
//=======================================================================
// function : Trim
// purpose : ne garde que la partie utile dans le champs.
//=======================================================================
Handle(Law_Function) Law_Composite::Trim(const Standard_Real PFirst,
const Standard_Real PLast,
const Standard_Real Tol) const
{
Handle(Law_Composite) l = new (Law_Composite)(PFirst, PLast, Tol);
l->ChangeLaws() = funclist;
return l;
}
//=================================================================================================
void Law_Composite::Bounds(Standard_Real& PFirst, Standard_Real& PLast)
{
PFirst = first;
PLast = last;
}
//=======================================================================
// function : Prepare
// purpose :
// Lorsque le parametre est pres d'un "noeud" on determine la loi en
// fonction du signe de tol:
// - negatif -> Loi precedente au noeud.
// - positif -> Loi consecutive au noeud.
//=======================================================================
void Law_Composite::Prepare(Standard_Real& W)
{
Standard_Real f, l, Wtest, Eps;
if (W - TFirst < TLast - W)
{
Eps = PTol;
}
else
{
Eps = -PTol;
}
if (curfunc.IsNull())
{
curfunc = funclist.Last();
curfunc->Bounds(f, last);
curfunc = funclist.First();
curfunc->Bounds(first, l);
}
Wtest = W + Eps; // Decalage pour discriminer les noeuds
if (periodic)
{
Wtest = ElCLib::InPeriod(Wtest, first, last);
W = Wtest - Eps;
}
curfunc->Bounds(f, l);
if (f <= Wtest && Wtest <= l)
return;
if (W <= first)
{
curfunc = funclist.First();
}
else if (W >= last)
{
curfunc = funclist.Last();
}
else
{
Law_ListIteratorOfLaws It(funclist);
for (; It.More(); It.Next())
{
curfunc = It.Value();
curfunc->Bounds(f, l);
if (f <= Wtest && Wtest <= l)
return;
}
}
}
//=================================================================================================
Handle(Law_Function)& Law_Composite::ChangeElementaryLaw(const Standard_Real W)
{
Standard_Real WW = W;
Prepare(WW);
return curfunc;
}
//=================================================================================================
Law_Laws& Law_Composite::ChangeLaws()
{
return funclist;
}
//=================================================================================================
Standard_Boolean Law_Composite::IsPeriodic() const
{
return periodic;
}
//=================================================================================================
void Law_Composite::SetPeriodic()
{
periodic = Standard_True;
}