mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-08-11 09:33:52 +08:00
6c24544fe1
- Refactor boolean expressions and improve code readability across multiple files - Simplified boolean expressions by removing unnecessary comparisons to true/false. - Replaced explicit boolean checks with direct variable usage Used flags: readability-static-accessed-through-instance readability-simplify-boolean-expr performance-for-range-copy performance-move-const-arg misc-unused-parameters misc-redundant-expression
97 lines
2.6 KiB
C++
97 lines
2.6 KiB
C++
// Created on: 2016-05-10
|
|
// Created by: Alexander MALYSHEV
|
|
// Copyright (c) 1995-1999 Matra Datavision
|
|
// Copyright (c) 1999-2016 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 <Extrema_FuncPSDist.hxx>
|
|
#include <gp_Pnt.hxx>
|
|
#include <gp_Vec.hxx>
|
|
#include <math_Vector.hxx>
|
|
|
|
//=================================================================================================
|
|
|
|
Extrema_FuncPSDist::Extrema_FuncPSDist(const Adaptor3d_Surface& theS, const gp_Pnt& theP)
|
|
: mySurf(theS),
|
|
myP(theP)
|
|
{
|
|
}
|
|
|
|
//=================================================================================================
|
|
|
|
int Extrema_FuncPSDist::NbVariables() const
|
|
{
|
|
return 2;
|
|
}
|
|
|
|
//=================================================================================================
|
|
|
|
bool Extrema_FuncPSDist::Value(const math_Vector& X, double& F)
|
|
{
|
|
if (!IsInside(X))
|
|
return false;
|
|
|
|
F = mySurf.Value(X(1), X(2)).SquareDistance(myP);
|
|
|
|
return true;
|
|
}
|
|
|
|
//=================================================================================================
|
|
|
|
bool Extrema_FuncPSDist::Gradient(const math_Vector& X, math_Vector& G)
|
|
|
|
{
|
|
if (!IsInside(X))
|
|
return false;
|
|
|
|
gp_Pnt aP;
|
|
gp_Vec Du1s, Dv1s;
|
|
mySurf.D1(X(1), X(2), aP, Du1s, Dv1s);
|
|
|
|
gp_Vec P1P2(aP, myP);
|
|
|
|
G(1) = P1P2.Dot(Du1s);
|
|
G(2) = P1P2.Dot(Dv1s);
|
|
|
|
return true;
|
|
}
|
|
|
|
//=================================================================================================
|
|
|
|
bool Extrema_FuncPSDist::Values(const math_Vector& X, double& F, math_Vector& G)
|
|
{
|
|
if (!IsInside(X))
|
|
return false;
|
|
|
|
gp_Pnt aP;
|
|
gp_Vec Du1s, Dv1s;
|
|
mySurf.D1(X(1), X(2), aP, Du1s, Dv1s);
|
|
|
|
gp_Vec P1P2(aP, myP);
|
|
|
|
G(1) = P1P2.Dot(Du1s);
|
|
G(2) = P1P2.Dot(Dv1s);
|
|
|
|
F = mySurf.Value(X(1), X(2)).SquareDistance(myP);
|
|
|
|
return true;
|
|
}
|
|
|
|
//=================================================================================================
|
|
|
|
bool Extrema_FuncPSDist::IsInside(const math_Vector& X)
|
|
{
|
|
return X(1) >= mySurf.FirstUParameter() && X(1) <= mySurf.LastUParameter()
|
|
&& X(2) >= mySurf.FirstVParameter() && X(2) <= mySurf.LastVParameter();
|
|
}
|