mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-05-31 11:15:31 +03:00
Changed "value" function behavior in Extrema/Extrema_GlobOptFuncCS.cxx. Now it compute square distance between point on curve and point on surface. Fixed description in Extrema_GlobOptFuncCC.
82 lines
3.0 KiB
C++
82 lines
3.0 KiB
C++
// Created on: 2014-06-23
|
|
// Created by: Alexander Malyshev
|
|
// Copyright (c) 2014-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
|
|
|
|
#ifndef _Extrema_GlobOptFuncCS_HeaderFile
|
|
#define _Extrema_GlobOptFuncCS_HeaderFile
|
|
|
|
|
|
#include <Adaptor3d_Curve.hxx>
|
|
#include <Adaptor3d_Surface.hxx>
|
|
#include <math_Matrix.hxx>
|
|
#include <math_Vector.hxx>
|
|
#include <math_MultipleVarFunctionWithHessian.hxx>
|
|
|
|
//! This class implements function which calculate square Eucluidean distance
|
|
//! between point on curve and point on surface in case of continuity is C2.
|
|
class Extrema_GlobOptFuncCS : public math_MultipleVarFunctionWithHessian
|
|
{
|
|
public:
|
|
|
|
//! Curve and surface should exist during all the lifetime of Extrema_GlobOptFuncCS.
|
|
Standard_EXPORT Extrema_GlobOptFuncCS(const Adaptor3d_Curve *C,
|
|
const Adaptor3d_Surface *S);
|
|
|
|
Standard_EXPORT virtual Standard_Integer NbVariables() const;
|
|
|
|
Standard_EXPORT virtual Standard_Boolean Value(const math_Vector &theX,
|
|
Standard_Real &theF);
|
|
|
|
Standard_EXPORT virtual Standard_Boolean Gradient(const math_Vector &theX,
|
|
math_Vector &theG);
|
|
|
|
Standard_EXPORT virtual Standard_Boolean Values(const math_Vector &theX,
|
|
Standard_Real &theF,
|
|
math_Vector &theG);
|
|
|
|
Standard_EXPORT virtual Standard_Boolean Values(const math_Vector &theX,
|
|
Standard_Real &theF,
|
|
math_Vector &theG,
|
|
math_Matrix &theH);
|
|
|
|
private:
|
|
|
|
Standard_Boolean checkInputData(const math_Vector &X,
|
|
Standard_Real &cu,
|
|
Standard_Real &su,
|
|
Standard_Real &sv);
|
|
|
|
void value(Standard_Real cu,
|
|
Standard_Real su,
|
|
Standard_Real sv,
|
|
Standard_Real &F);
|
|
|
|
void gradient(Standard_Real cu,
|
|
Standard_Real su,
|
|
Standard_Real sv,
|
|
math_Vector &G);
|
|
|
|
void hessian(Standard_Real cu,
|
|
Standard_Real su,
|
|
Standard_Real sv,
|
|
math_Matrix &H);
|
|
|
|
Extrema_GlobOptFuncCS & operator = (const Extrema_GlobOptFuncCS & theOther);
|
|
|
|
const Adaptor3d_Curve *myC;
|
|
const Adaptor3d_Surface *myS;
|
|
};
|
|
|
|
#endif
|