mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-21 10:13:43 +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.
61 lines
2.9 KiB
C++
61 lines
2.9 KiB
C++
// Created by: Eugeny MALTCHIKOV
|
|
// Copyright (c) 2017 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 _IntPolyh_Tools_HeaderFile
|
|
#define _IntPolyh_Tools_HeaderFile
|
|
|
|
#include <Adaptor3d_Surface.hxx>
|
|
#include <TColStd_Array1OfReal.hxx>
|
|
#include <IntPolyh_ArrayOfPointNormal.hxx>
|
|
|
|
//! The class provides tools for surface sampling.
|
|
class IntPolyh_Tools
|
|
{
|
|
public:
|
|
|
|
//! Checks if the surface can be enlarged in U or V direction.
|
|
Standard_EXPORT static void IsEnlargePossible(const Handle(Adaptor3d_Surface)& theSurf,
|
|
Standard_Boolean& theUEnlarge,
|
|
Standard_Boolean& theVEnlarge);
|
|
|
|
//! Makes the sampling of the given surface <theSurf>
|
|
//! making the net of <theNbSU> x <theNbSV> sampling points.
|
|
//! The flag <theEnlargeZone> controls the enlargement of the
|
|
//! sampling zone on the surface.
|
|
//! The parameters of the sampling points are stored into
|
|
//! <theUPars> and <theVPars> arrays.
|
|
Standard_EXPORT static void MakeSampling(const Handle(Adaptor3d_Surface)& theSurf,
|
|
const Standard_Integer theNbSU,
|
|
const Standard_Integer theNbSV,
|
|
const Standard_Boolean theEnlargeZone,
|
|
TColStd_Array1OfReal& theUPars,
|
|
TColStd_Array1OfReal& theVPars);
|
|
|
|
//! Computes the deflection tolerance on the surface for the given sampling.
|
|
Standard_EXPORT static Standard_Real ComputeDeflection(const Handle(Adaptor3d_Surface)& theSurf,
|
|
const TColStd_Array1OfReal& theUPars,
|
|
const TColStd_Array1OfReal& theVPars);
|
|
|
|
//! Fills the array <thePoints> with the points (triangulation nodes) on the surface
|
|
//! and normal directions of the surface in these points.
|
|
Standard_EXPORT static void FillArrayOfPointNormal(const Handle(Adaptor3d_Surface)& theSurf,
|
|
const TColStd_Array1OfReal& theUPars,
|
|
const TColStd_Array1OfReal& theVPars,
|
|
IntPolyh_ArrayOfPointNormal& thePoints);
|
|
|
|
|
|
};
|
|
|
|
#endif // _IntPolyh_Tools_HeaderFile
|