mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-05-21 10:55:33 +03:00
135 lines
3.9 KiB
C++
135 lines
3.9 KiB
C++
// Created on: 1993-04-07
|
|
// Created by: Laurent BUCHARD
|
|
// 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 _IntCurveSurface_ThePolygonOfHInter_HeaderFile
|
|
#define _IntCurveSurface_ThePolygonOfHInter_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
#include <Standard_DefineAlloc.hxx>
|
|
#include <Standard_Handle.hxx>
|
|
|
|
#include <Bnd_Box.hxx>
|
|
#include <Standard_Real.hxx>
|
|
#include <Standard_Integer.hxx>
|
|
#include <TColgp_Array1OfPnt.hxx>
|
|
#include <Standard_Boolean.hxx>
|
|
#include <TColStd_HArray1OfReal.hxx>
|
|
#include <TColStd_Array1OfReal.hxx>
|
|
class Standard_OutOfRange;
|
|
class Adaptor3d_HCurve;
|
|
class IntCurveSurface_TheHCurveTool;
|
|
class Bnd_Box;
|
|
class gp_Pnt;
|
|
|
|
|
|
|
|
class IntCurveSurface_ThePolygonOfHInter
|
|
{
|
|
public:
|
|
|
|
DEFINE_STANDARD_ALLOC
|
|
|
|
|
|
Standard_EXPORT IntCurveSurface_ThePolygonOfHInter(const Handle(Adaptor3d_HCurve)& Curve, const Standard_Integer NbPnt);
|
|
|
|
Standard_EXPORT IntCurveSurface_ThePolygonOfHInter(const Handle(Adaptor3d_HCurve)& Curve, const Standard_Real U1, const Standard_Real U2, const Standard_Integer NbPnt);
|
|
|
|
Standard_EXPORT IntCurveSurface_ThePolygonOfHInter(const Handle(Adaptor3d_HCurve)& Curve, const TColStd_Array1OfReal& Upars);
|
|
|
|
//! Give the bounding box of the polygon.
|
|
const Bnd_Box& Bounding() const;
|
|
|
|
Standard_Real DeflectionOverEstimation() const;
|
|
|
|
void SetDeflectionOverEstimation (const Standard_Real x);
|
|
|
|
void Closed (const Standard_Boolean clos);
|
|
|
|
Standard_Boolean Closed() const;
|
|
|
|
//! Give the number of Segments in the polyline.
|
|
Standard_Integer NbSegments() const;
|
|
|
|
//! Give the point of range Index in the Polygon.
|
|
const gp_Pnt& BeginOfSeg (const Standard_Integer Index) const;
|
|
|
|
//! Give the point of range Index in the Polygon.
|
|
const gp_Pnt& EndOfSeg (const Standard_Integer Index) const;
|
|
|
|
//! Returns the parameter (On the curve)
|
|
//! of the first point of the Polygon
|
|
Standard_Real InfParameter() const;
|
|
|
|
//! Returns the parameter (On the curve)
|
|
//! of the last point of the Polygon
|
|
Standard_Real SupParameter() const;
|
|
|
|
//! Give an approximation of the parameter on the curve
|
|
//! according to the discretization of the Curve.
|
|
Standard_EXPORT Standard_Real ApproxParamOnCurve (const Standard_Integer Index, const Standard_Real ParamOnLine) const;
|
|
|
|
Standard_EXPORT void Dump() const;
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
Standard_EXPORT void Init (const Handle(Adaptor3d_HCurve)& Curve);
|
|
|
|
Standard_EXPORT void Init (const Handle(Adaptor3d_HCurve)& Curve, const TColStd_Array1OfReal& Upars);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
Bnd_Box TheBnd;
|
|
Standard_Real TheDeflection;
|
|
Standard_Integer NbPntIn;
|
|
TColgp_Array1OfPnt ThePnts;
|
|
Standard_Boolean ClosedPolygon;
|
|
Standard_Real Binf;
|
|
Standard_Real Bsup;
|
|
Handle(TColStd_HArray1OfReal) myParams;
|
|
|
|
|
|
};
|
|
|
|
#define TheCurve Handle(Adaptor3d_HCurve)
|
|
#define TheCurve_hxx <Adaptor3d_HCurve.hxx>
|
|
#define TheCurveTool IntCurveSurface_TheHCurveTool
|
|
#define TheCurveTool_hxx <IntCurveSurface_TheHCurveTool.hxx>
|
|
#define IntCurveSurface_Polygon IntCurveSurface_ThePolygonOfHInter
|
|
#define IntCurveSurface_Polygon_hxx <IntCurveSurface_ThePolygonOfHInter.hxx>
|
|
|
|
#include <IntCurveSurface_Polygon.lxx>
|
|
|
|
#undef TheCurve
|
|
#undef TheCurve_hxx
|
|
#undef TheCurveTool
|
|
#undef TheCurveTool_hxx
|
|
#undef IntCurveSurface_Polygon
|
|
#undef IntCurveSurface_Polygon_hxx
|
|
|
|
|
|
|
|
|
|
#endif // _IntCurveSurface_ThePolygonOfHInter_HeaderFile
|