mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-09 13:22:24 +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.
97 lines
3.0 KiB
C++
97 lines
3.0 KiB
C++
// Created on: 1999-09-21
|
|
// Created by: Edward AGAPOV
|
|
// Copyright (c) 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 _Extrema_ExtPRevS_HeaderFile
|
|
#define _Extrema_ExtPRevS_HeaderFile
|
|
|
|
#include <GeomAdaptor_SurfaceOfRevolution.hxx>
|
|
#include <gp_Ax2.hxx>
|
|
#include <Extrema_GenExtPS.hxx>
|
|
#include <Extrema_POnSurf.hxx>
|
|
|
|
DEFINE_STANDARD_HANDLE(Extrema_ExtPRevS, Standard_Transient)
|
|
|
|
//! It calculates all the extremum (minimum and
|
|
//! maximum) distances between a point and a surface
|
|
//! of revolution.
|
|
class Extrema_ExtPRevS : public Standard_Transient
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
Standard_EXPORT Extrema_ExtPRevS();
|
|
|
|
//! It calculates all the distances between a point
|
|
//! from gp and a SurfacePtr from Adaptor3d.
|
|
Standard_EXPORT Extrema_ExtPRevS(const gp_Pnt& P, const Handle(GeomAdaptor_SurfaceOfRevolution)& S, const Standard_Real Umin, const Standard_Real Usup, const Standard_Real Vmin, const Standard_Real Vsup, const Standard_Real TolU, const Standard_Real TolV);
|
|
|
|
//! It calculates all the distances between a point
|
|
//! from gp and a SurfacePtr from Adaptor3d.
|
|
Standard_EXPORT Extrema_ExtPRevS(const gp_Pnt& P, const Handle(GeomAdaptor_SurfaceOfRevolution)& S, const Standard_Real TolU, const Standard_Real TolV);
|
|
|
|
Standard_EXPORT void Initialize (const Handle(GeomAdaptor_SurfaceOfRevolution)& S, const Standard_Real Umin, const Standard_Real Usup, const Standard_Real Vmin, const Standard_Real Vsup, const Standard_Real TolU, const Standard_Real TolV);
|
|
|
|
Standard_EXPORT void Perform (const gp_Pnt& P);
|
|
|
|
//! Returns True if the distances are found.
|
|
Standard_EXPORT Standard_Boolean IsDone() const;
|
|
|
|
//! Returns the number of extremum distances.
|
|
Standard_EXPORT Standard_Integer NbExt() const;
|
|
|
|
//! Returns the value of the Nth resulting square distance.
|
|
Standard_EXPORT Standard_Real SquareDistance (const Standard_Integer N) const;
|
|
|
|
//! Returns the point of the Nth resulting distance.
|
|
Standard_EXPORT const Extrema_POnSurf& Point (const Standard_Integer N) const;
|
|
|
|
|
|
|
|
|
|
DEFINE_STANDARD_RTTIEXT(Extrema_ExtPRevS,Standard_Transient)
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
Handle(GeomAdaptor_SurfaceOfRevolution) myS;
|
|
Standard_Real myvinf;
|
|
Standard_Real myvsup;
|
|
Standard_Real mytolv;
|
|
gp_Ax2 myPosition;
|
|
Extrema_GenExtPS myExtPS;
|
|
Standard_Boolean myIsAnalyticallyComputable;
|
|
Standard_Boolean myDone;
|
|
Standard_Integer myNbExt;
|
|
Standard_Real mySqDist[8];
|
|
Extrema_POnSurf myPoint[8];
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _Extrema_ExtPRevS_HeaderFile
|