mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
101 lines
3.0 KiB
C++
101 lines
3.0 KiB
C++
// Created on: 1995-10-17
|
|
// Created by: Laurent BOURESCHE
|
|
// 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 _GeomFill_Boundary_HeaderFile
|
|
#define _GeomFill_Boundary_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
#include <Standard_Type.hxx>
|
|
|
|
#include <Standard_Real.hxx>
|
|
#include <Standard_Transient.hxx>
|
|
#include <Standard_Boolean.hxx>
|
|
class gp_Pnt;
|
|
class gp_Vec;
|
|
|
|
|
|
class GeomFill_Boundary;
|
|
DEFINE_STANDARD_HANDLE(GeomFill_Boundary, Standard_Transient)
|
|
|
|
//! Root class to define a boundary which will form part of a
|
|
//! contour around a gap requiring filling.
|
|
//! Any new type of constrained boundary must inherit this class.
|
|
//! The GeomFill package provides two classes to define constrained boundaries:
|
|
//! - GeomFill_SimpleBound to define an unattached boundary
|
|
//! - GeomFill_BoundWithSurf to define a boundary attached to a surface.
|
|
//! These objects are used to define the boundaries for a
|
|
//! GeomFill_ConstrainedFilling framework.
|
|
class GeomFill_Boundary : public Standard_Transient
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
Standard_EXPORT virtual gp_Pnt Value (const Standard_Real U) const = 0;
|
|
|
|
Standard_EXPORT virtual void D1 (const Standard_Real U, gp_Pnt& P, gp_Vec& V) const = 0;
|
|
|
|
Standard_EXPORT virtual Standard_Boolean HasNormals() const;
|
|
|
|
Standard_EXPORT virtual gp_Vec Norm (const Standard_Real U) const;
|
|
|
|
Standard_EXPORT virtual void D1Norm (const Standard_Real U, gp_Vec& N, gp_Vec& DN) const;
|
|
|
|
Standard_EXPORT virtual void Reparametrize (const Standard_Real First, const Standard_Real Last, const Standard_Boolean HasDF, const Standard_Boolean HasDL, const Standard_Real DF, const Standard_Real DL, const Standard_Boolean Rev) = 0;
|
|
|
|
Standard_EXPORT void Points (gp_Pnt& PFirst, gp_Pnt& PLast) const;
|
|
|
|
Standard_EXPORT virtual void Bounds (Standard_Real& First, Standard_Real& Last) const = 0;
|
|
|
|
Standard_EXPORT virtual Standard_Boolean IsDegenerated() const = 0;
|
|
|
|
Standard_EXPORT Standard_Real Tol3d() const;
|
|
|
|
Standard_EXPORT void Tol3d (const Standard_Real Tol);
|
|
|
|
Standard_EXPORT Standard_Real Tolang() const;
|
|
|
|
Standard_EXPORT void Tolang (const Standard_Real Tol);
|
|
|
|
|
|
|
|
|
|
DEFINE_STANDARD_RTTIEXT(GeomFill_Boundary,Standard_Transient)
|
|
|
|
protected:
|
|
|
|
|
|
Standard_EXPORT GeomFill_Boundary(const Standard_Real Tol3d, const Standard_Real Tolang);
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
Standard_Real myT3d;
|
|
Standard_Real myTang;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _GeomFill_Boundary_HeaderFile
|