mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-26 10:19:45 +03:00
Automatic upgrade of OCCT code by command "occt_upgrade . -nocdl": - WOK-generated header files from inc and sources from drv are moved to src - CDL files removed - All packages are converted to nocdlpack
103 lines
2.6 KiB
C++
103 lines
2.6 KiB
C++
// Created on: 1993-11-26
|
|
// Created by: Modelistation
|
|
// Copyright (c) 1993-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 _IntPatch_ALineToWLine_HeaderFile
|
|
#define _IntPatch_ALineToWLine_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
#include <Standard_DefineAlloc.hxx>
|
|
#include <Standard_Handle.hxx>
|
|
|
|
#include <IntSurf_Quadric.hxx>
|
|
#include <Standard_Real.hxx>
|
|
#include <Standard_Integer.hxx>
|
|
class IntSurf_Quadric;
|
|
class IntPatch_WLine;
|
|
class IntPatch_ALine;
|
|
|
|
|
|
|
|
class IntPatch_ALineToWLine
|
|
{
|
|
public:
|
|
|
|
DEFINE_STANDARD_ALLOC
|
|
|
|
|
|
Standard_EXPORT IntPatch_ALineToWLine(const IntSurf_Quadric& Quad1, const IntSurf_Quadric& Quad2);
|
|
|
|
Standard_EXPORT IntPatch_ALineToWLine(const IntSurf_Quadric& Quad1, const IntSurf_Quadric& Quad2, const Standard_Real Deflection, const Standard_Real PasMaxUV, const Standard_Integer NbMaxPoints);
|
|
|
|
Standard_EXPORT void SetTolParam (const Standard_Real aT);
|
|
|
|
Standard_EXPORT Standard_Real TolParam() const;
|
|
|
|
Standard_EXPORT void SetTolOpenDomain (const Standard_Real aT);
|
|
|
|
Standard_EXPORT Standard_Real TolOpenDomain() const;
|
|
|
|
Standard_EXPORT void SetTolTransition (const Standard_Real aT);
|
|
|
|
Standard_EXPORT Standard_Real TolTransition() const;
|
|
|
|
Standard_EXPORT void SetTol3D (const Standard_Real aT);
|
|
|
|
Standard_EXPORT Standard_Real Tol3D() const;
|
|
|
|
Standard_EXPORT void SetConstantParameter() const;
|
|
|
|
Standard_EXPORT void SetUniformAbscissa() const;
|
|
|
|
Standard_EXPORT void SetUniformDeflection() const;
|
|
|
|
Standard_EXPORT Handle(IntPatch_WLine) MakeWLine (const Handle(IntPatch_ALine)& aline) const;
|
|
|
|
Standard_EXPORT Handle(IntPatch_WLine) MakeWLine (const Handle(IntPatch_ALine)& aline, const Standard_Real paraminf, const Standard_Real paramsup) const;
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
IntSurf_Quadric quad1;
|
|
IntSurf_Quadric quad2;
|
|
Standard_Real deflectionmax;
|
|
Standard_Integer nbpointsmax;
|
|
Standard_Integer type;
|
|
Standard_Real myTolParam;
|
|
Standard_Real myTolOpenDomain;
|
|
Standard_Real myTolTransition;
|
|
Standard_Real myTol3D;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _IntPatch_ALineToWLine_HeaderFile
|