mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +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.
130 lines
3.4 KiB
C++
130 lines
3.4 KiB
C++
// Created on: 1994-01-10
|
|
// Created by: Yves FRICAUD
|
|
// Copyright (c) 1994-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 <Bisector_PolyBis.hxx>
|
|
#include <ElCLib.hxx>
|
|
#include <gp.hxx>
|
|
#include <gp_Trsf2d.hxx>
|
|
|
|
//=================================================================================================
|
|
|
|
Bisector_PolyBis::Bisector_PolyBis()
|
|
{
|
|
nbPoints = 0;
|
|
}
|
|
|
|
//=================================================================================================
|
|
|
|
void Bisector_PolyBis::Append(const Bisector_PointOnBis& P)
|
|
{
|
|
nbPoints++;
|
|
thePoints[nbPoints] = P;
|
|
}
|
|
|
|
//=================================================================================================
|
|
|
|
Standard_Integer Bisector_PolyBis::Length() const
|
|
{
|
|
return nbPoints;
|
|
}
|
|
|
|
//=================================================================================================
|
|
|
|
Standard_Boolean Bisector_PolyBis::IsEmpty() const
|
|
{
|
|
return (nbPoints == 0);
|
|
}
|
|
|
|
//=================================================================================================
|
|
|
|
const Bisector_PointOnBis& Bisector_PolyBis::Value(const Standard_Integer Index) const
|
|
{
|
|
return thePoints[Index];
|
|
}
|
|
|
|
//=================================================================================================
|
|
|
|
const Bisector_PointOnBis& Bisector_PolyBis::First() const
|
|
{
|
|
return thePoints[1];
|
|
}
|
|
|
|
//=================================================================================================
|
|
|
|
const Bisector_PointOnBis& Bisector_PolyBis::Last() const
|
|
{
|
|
return thePoints[nbPoints];
|
|
}
|
|
|
|
//=================================================================================================
|
|
|
|
// const PointOnBis& Bisector_PolyBis::Points()
|
|
//{
|
|
// return thePoints;
|
|
//}
|
|
|
|
//=================================================================================================
|
|
|
|
Standard_Integer Bisector_PolyBis::Interval(const Standard_Real U) const
|
|
{
|
|
if (Last().ParamOnBis() - U < gp::Resolution())
|
|
{
|
|
return nbPoints - 1;
|
|
}
|
|
Standard_Real dU = (Last().ParamOnBis() - First().ParamOnBis()) / (nbPoints - 1);
|
|
if (dU <= gp::Resolution())
|
|
return 1;
|
|
|
|
Standard_Integer IntU = Standard_Integer(Abs(U - First().ParamOnBis()) / dU);
|
|
IntU++;
|
|
|
|
if (thePoints[IntU].ParamOnBis() >= U)
|
|
{
|
|
for (Standard_Integer i = IntU; i >= 1; i--)
|
|
{
|
|
if (thePoints[i].ParamOnBis() <= U)
|
|
{
|
|
IntU = i;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
for (Standard_Integer i = IntU; i <= nbPoints - 1; i++)
|
|
{
|
|
if (thePoints[i].ParamOnBis() >= U)
|
|
{
|
|
IntU = i - 1;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
return IntU;
|
|
}
|
|
|
|
//=================================================================================================
|
|
|
|
void Bisector_PolyBis::Transform(const gp_Trsf2d& T)
|
|
{
|
|
for (Standard_Integer i = 1; i <= nbPoints; i++)
|
|
{
|
|
gp_Pnt2d P = thePoints[i].Point();
|
|
P.Transform(T);
|
|
thePoints[i].Point(P);
|
|
}
|
|
}
|