mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-09 18:50:54 +03:00
Adaptor2d_Curve2d, Adaptor3d_Curve and Adaptor3d_Surface now inherit Standard_Transient. Interfaces Adaptor2d_HCurve2d, Adaptor3d_HCurve, Adaptor3d_HSurface and their subclasses are now aliases to Adaptor2d_Curve2d, Adaptor3d_Curve and Adaptor3d_Surface. Removed numerous unsafe reinterpret casts. Generic classes Adaptor3d_GenHCurve, Adaptor3d_GenHSurface, Adaptor2d_GenHCurve2d have been removed. Several redundant .lxx files have been merged into .hxx. Removed obsolete adaptor classes with H suffix.
161 lines
4.9 KiB
C++
161 lines
4.9 KiB
C++
// Created on: 1991-03-28
|
|
// Created by: Jacques GOUSSARD
|
|
// Copyright (c) 1991-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 _IntWalk_TheInt2S_HeaderFile
|
|
#define _IntWalk_TheInt2S_HeaderFile
|
|
|
|
#include <Adaptor3d_Surface.hxx>
|
|
#include <IntSurf_PntOn2S.hxx>
|
|
#include <gp_Dir.hxx>
|
|
#include <gp_Dir2d.hxx>
|
|
#include <IntWalk_TheFunctionOfTheInt2S.hxx>
|
|
#include <Standard_Real.hxx>
|
|
#include <TColStd_Array1OfReal.hxx>
|
|
#include <IntImp_ConstIsoparametric.hxx>
|
|
|
|
class Adaptor3d_HSurfaceTool;
|
|
class math_FunctionSetRoot;
|
|
|
|
class IntWalk_TheInt2S
|
|
{
|
|
public:
|
|
|
|
DEFINE_STANDARD_ALLOC
|
|
|
|
//! compute the solution point with the close point
|
|
Standard_EXPORT IntWalk_TheInt2S(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 IntWalk_TheInt2S(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
|
|
IntWalk_TheFunctionOfTheInt2S& 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;
|
|
IntWalk_TheFunctionOfTheInt2S 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 IntWalk_TheFunctionOfTheInt2S
|
|
#define IntImp_TheFunction_hxx <IntWalk_TheFunctionOfTheInt2S.hxx>
|
|
#define IntImp_Int2S IntWalk_TheInt2S
|
|
#define IntImp_Int2S_hxx <IntWalk_TheInt2S.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 // _IntWalk_TheInt2S_HeaderFile
|