mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-07-20 12:45:50 +03:00
108 lines
3.2 KiB
C++
108 lines
3.2 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_TheImpPrmSvSurfacesOfWLApprox_HeaderFile
|
|
#define _GeomInt_TheImpPrmSvSurfacesOfWLApprox_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
#include <Standard_DefineAlloc.hxx>
|
|
#include <Standard_Handle.hxx>
|
|
|
|
#include <gp_Pnt2d.hxx>
|
|
#include <gp_Pnt.hxx>
|
|
#include <gp_Vec2d.hxx>
|
|
#include <gp_Vec.hxx>
|
|
#include <Standard_Boolean.hxx>
|
|
#include <GeomInt_TheZerImpFuncOfTheImpPrmSvSurfacesOfWLApprox.hxx>
|
|
#include <ApproxInt_SvSurfaces.hxx>
|
|
#include <Standard_Real.hxx>
|
|
class Adaptor3d_HSurface;
|
|
class Adaptor3d_HSurfaceTool;
|
|
class IntSurf_Quadric;
|
|
class IntSurf_QuadricTool;
|
|
class IntPatch_WLine;
|
|
class GeomInt_TheZerImpFuncOfTheImpPrmSvSurfacesOfWLApprox;
|
|
class gp_Pnt;
|
|
class gp_Vec;
|
|
class gp_Vec2d;
|
|
|
|
|
|
|
|
class GeomInt_TheImpPrmSvSurfacesOfWLApprox : public ApproxInt_SvSurfaces
|
|
{
|
|
public:
|
|
|
|
DEFINE_STANDARD_ALLOC
|
|
|
|
|
|
Standard_EXPORT GeomInt_TheImpPrmSvSurfacesOfWLApprox(const Handle(Adaptor3d_HSurface)& Surf1, const IntSurf_Quadric& Surf2);
|
|
|
|
Standard_EXPORT GeomInt_TheImpPrmSvSurfacesOfWLApprox(const IntSurf_Quadric& Surf1, const Handle(Adaptor3d_HSurface)& Surf2);
|
|
|
|
//! returns True if Tg,Tguv1 Tguv2 can be computed.
|
|
Standard_EXPORT Standard_Boolean Compute (Standard_Real& u1, Standard_Real& v1, Standard_Real& u2, Standard_Real& v2, gp_Pnt& Pt, gp_Vec& Tg, gp_Vec2d& Tguv1, gp_Vec2d& Tguv2);
|
|
|
|
Standard_EXPORT void Pnt (const Standard_Real u1, const Standard_Real v1, const Standard_Real u2, const Standard_Real v2, gp_Pnt& P);
|
|
|
|
Standard_EXPORT Standard_Boolean Tangency (const Standard_Real u1, const Standard_Real v1, const Standard_Real u2, const Standard_Real v2, gp_Vec& Tg);
|
|
|
|
Standard_EXPORT Standard_Boolean TangencyOnSurf1 (const Standard_Real u1, const Standard_Real v1, const Standard_Real u2, const Standard_Real v2, gp_Vec2d& Tg);
|
|
|
|
Standard_EXPORT Standard_Boolean TangencyOnSurf2 (const Standard_Real u1, const Standard_Real v1, const Standard_Real u2, const Standard_Real v2, gp_Vec2d& Tg);
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
gp_Pnt2d MyParOnS1;
|
|
gp_Pnt2d MyParOnS2;
|
|
gp_Pnt MyPnt;
|
|
gp_Vec2d MyTguv1;
|
|
gp_Vec2d MyTguv2;
|
|
gp_Vec MyTg;
|
|
Standard_Boolean MyIsTangent;
|
|
Standard_Boolean MyHasBeenComputed;
|
|
gp_Pnt2d MyParOnS1bis;
|
|
gp_Pnt2d MyParOnS2bis;
|
|
gp_Pnt MyPntbis;
|
|
gp_Vec2d MyTguv1bis;
|
|
gp_Vec2d MyTguv2bis;
|
|
gp_Vec MyTgbis;
|
|
Standard_Boolean MyIsTangentbis;
|
|
Standard_Boolean MyHasBeenComputedbis;
|
|
Standard_Boolean MyImplicitFirst;
|
|
GeomInt_TheZerImpFuncOfTheImpPrmSvSurfacesOfWLApprox MyZerImpFunc;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _GeomInt_TheImpPrmSvSurfacesOfWLApprox_HeaderFile
|