mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-06-15 11:44:07 +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.
155 lines
6.4 KiB
C++
155 lines
6.4 KiB
C++
// Created on: 1995-01-27
|
|
// Created by: Jacques GOUSSARD
|
|
// 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.
|
|
|
|
#ifndef _GeomInt_TheInt2SOfThePrmPrmSvSurfacesOfWLApprox_HeaderFile
|
|
#define _GeomInt_TheInt2SOfThePrmPrmSvSurfacesOfWLApprox_HeaderFile
|
|
|
|
#include <Adaptor3d_Surface.hxx>
|
|
#include <IntSurf_PntOn2S.hxx>
|
|
#include <gp_Dir.hxx>
|
|
#include <gp_Dir2d.hxx>
|
|
#include <GeomInt_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfWLApprox.hxx>
|
|
#include <TColStd_Array1OfReal.hxx>
|
|
#include <IntImp_ConstIsoparametric.hxx>
|
|
|
|
class Adaptor3d_HSurfaceTool;
|
|
class GeomInt_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfWLApprox;
|
|
class math_FunctionSetRoot;
|
|
class IntSurf_PntOn2S;
|
|
|
|
class GeomInt_TheInt2SOfThePrmPrmSvSurfacesOfWLApprox
|
|
{
|
|
public:
|
|
DEFINE_STANDARD_ALLOC
|
|
|
|
//! compute the solution point with the close point
|
|
Standard_EXPORT GeomInt_TheInt2SOfThePrmPrmSvSurfacesOfWLApprox(
|
|
const TColStd_Array1OfReal& Param,
|
|
const Handle(Adaptor3d_Surface)& S1,
|
|
const Handle(Adaptor3d_Surface)& S2,
|
|
const Standard_Real TolTangency);
|
|
|
|
//! initialize the parameters to compute the solution point
|
|
//! it 's possible to write to optimize:
|
|
//! IntImp_Int2S inter(S1,S2,Func,TolTangency);
|
|
//! math_FunctionSetRoot rsnld(inter.Function());
|
|
//! while ...{
|
|
//! Param(1)=...
|
|
//! Param(2)=...
|
|
//! param(3)=...
|
|
//! inter.Perform(Param,rsnld);
|
|
//! }
|
|
Standard_EXPORT GeomInt_TheInt2SOfThePrmPrmSvSurfacesOfWLApprox(
|
|
const Handle(Adaptor3d_Surface)& S1,
|
|
const Handle(Adaptor3d_Surface)& S2,
|
|
const Standard_Real TolTangency);
|
|
|
|
//! returns the best constant isoparametric to find
|
|
//! the next intersection's point +stores the solution
|
|
//! point (the solution point is found with the close point
|
|
//! to intersect the isoparametric with the other patch;
|
|
//! the choice of the isoparametic is calculated)
|
|
Standard_EXPORT IntImp_ConstIsoparametric Perform(const TColStd_Array1OfReal& Param,
|
|
math_FunctionSetRoot& Rsnld);
|
|
|
|
//! returns the best constant isoparametric to find
|
|
//! the next intersection's point +stores the solution
|
|
//! point (the solution point is found with the close point
|
|
//! to intersect the isoparametric with the other patch;
|
|
//! the choice of the isoparametic is given by ChoixIso)
|
|
Standard_EXPORT IntImp_ConstIsoparametric Perform(const TColStd_Array1OfReal& Param,
|
|
math_FunctionSetRoot& Rsnld,
|
|
const IntImp_ConstIsoparametric ChoixIso);
|
|
|
|
//! Returns TRUE if the creation completed without failure.
|
|
Standard_Boolean IsDone() const;
|
|
|
|
//! Returns TRUE when there is no solution to the problem.
|
|
Standard_Boolean IsEmpty() const;
|
|
|
|
//! Returns the intersection point.
|
|
const IntSurf_PntOn2S& Point() const;
|
|
|
|
//! Returns True if the surfaces are tangent at the
|
|
//! intersection point.
|
|
Standard_Boolean IsTangent() const;
|
|
|
|
//! Returns the tangent at the intersection line.
|
|
const gp_Dir& Direction() const;
|
|
|
|
//! Returns the tangent at the intersection line in the
|
|
//! parametric space of the first surface.
|
|
const gp_Dir2d& DirectionOnS1() const;
|
|
|
|
//! Returns the tangent at the intersection line in the
|
|
//! parametric space of the second surface.
|
|
const gp_Dir2d& DirectionOnS2() const;
|
|
|
|
//! return the math function which
|
|
//! is used to compute the intersection
|
|
GeomInt_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfWLApprox& Function();
|
|
|
|
//! return the intersection point which is
|
|
//! enable for changing.
|
|
IntSurf_PntOn2S& ChangePoint();
|
|
|
|
protected:
|
|
private:
|
|
Standard_Boolean done;
|
|
Standard_Boolean empty;
|
|
IntSurf_PntOn2S pint;
|
|
Standard_Boolean tangent;
|
|
gp_Dir d3d;
|
|
gp_Dir2d d2d1;
|
|
gp_Dir2d d2d2;
|
|
GeomInt_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfWLApprox myZerParFunc;
|
|
Standard_Real tol;
|
|
Standard_Real ua0;
|
|
Standard_Real va0;
|
|
Standard_Real ua1;
|
|
Standard_Real va1;
|
|
Standard_Real ub0;
|
|
Standard_Real vb0;
|
|
Standard_Real ub1;
|
|
Standard_Real vb1;
|
|
Standard_Real ures1;
|
|
Standard_Real ures2;
|
|
Standard_Real vres1;
|
|
Standard_Real vres2;
|
|
};
|
|
|
|
#define ThePSurface Handle(Adaptor3d_Surface)
|
|
#define ThePSurface_hxx <Adaptor3d_Surface.hxx>
|
|
#define ThePSurfaceTool Adaptor3d_HSurfaceTool
|
|
#define ThePSurfaceTool_hxx <Adaptor3d_HSurfaceTool.hxx>
|
|
#define IntImp_TheFunction GeomInt_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfWLApprox
|
|
#define IntImp_TheFunction_hxx <GeomInt_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfWLApprox.hxx>
|
|
#define IntImp_Int2S GeomInt_TheInt2SOfThePrmPrmSvSurfacesOfWLApprox
|
|
#define IntImp_Int2S_hxx <GeomInt_TheInt2SOfThePrmPrmSvSurfacesOfWLApprox.hxx>
|
|
|
|
#include <IntImp_Int2S.lxx>
|
|
|
|
#undef ThePSurface
|
|
#undef ThePSurface_hxx
|
|
#undef ThePSurfaceTool
|
|
#undef ThePSurfaceTool_hxx
|
|
#undef IntImp_TheFunction
|
|
#undef IntImp_TheFunction_hxx
|
|
#undef IntImp_Int2S
|
|
#undef IntImp_Int2S_hxx
|
|
|
|
#endif // _GeomInt_TheInt2SOfThePrmPrmSvSurfacesOfWLApprox_HeaderFile
|