mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-07-15 12:35:51 +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.
144 lines
5.0 KiB
C++
144 lines
5.0 KiB
C++
// Created on: 1998-05-12
|
|
// Created by: Roman BORISOV
|
|
// Copyright (c) 1998-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 _Approx_CurvlinFunc_HeaderFile
|
|
#define _Approx_CurvlinFunc_HeaderFile
|
|
|
|
#include <Adaptor2d_Curve2d.hxx>
|
|
#include <Adaptor3d_Curve.hxx>
|
|
#include <Adaptor3d_Surface.hxx>
|
|
#include <GeomAbs_Shape.hxx>
|
|
#include <TColStd_Array1OfReal.hxx>
|
|
#include <TColStd_HArray1OfReal.hxx>
|
|
|
|
DEFINE_STANDARD_HANDLE(Approx_CurvlinFunc, Standard_Transient)
|
|
|
|
//! defines an abstract curve with
|
|
//! curvilinear parametrization
|
|
class Approx_CurvlinFunc : public Standard_Transient
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
Standard_EXPORT Approx_CurvlinFunc(const Handle(Adaptor3d_Curve)& C, const Standard_Real Tol);
|
|
|
|
Standard_EXPORT Approx_CurvlinFunc(const Handle(Adaptor2d_Curve2d)& C2D, const Handle(Adaptor3d_Surface)& S, const Standard_Real Tol);
|
|
|
|
Standard_EXPORT Approx_CurvlinFunc(const Handle(Adaptor2d_Curve2d)& C2D1, const Handle(Adaptor2d_Curve2d)& C2D2, const Handle(Adaptor3d_Surface)& S1, const Handle(Adaptor3d_Surface)& S2, const Standard_Real Tol);
|
|
|
|
//! ---Purpose Update the tolerance to used
|
|
Standard_EXPORT void SetTol (const Standard_Real Tol);
|
|
|
|
Standard_EXPORT Standard_Real FirstParameter() const;
|
|
|
|
Standard_EXPORT Standard_Real LastParameter() const;
|
|
|
|
//! Returns the number of intervals for continuity
|
|
//! <S>. May be one if Continuity(me) >= <S>
|
|
Standard_EXPORT Standard_Integer NbIntervals (const GeomAbs_Shape S) const;
|
|
|
|
//! Stores in <T> the parameters bounding the intervals
|
|
//! of continuity <S>.
|
|
//!
|
|
//! The array must provide enough room to accommodate
|
|
//! for the parameters. i.e. T.Length() > NbIntervals()
|
|
Standard_EXPORT void Intervals (TColStd_Array1OfReal& T, const GeomAbs_Shape S) const;
|
|
|
|
//! if First < 0 or Last > 1
|
|
Standard_EXPORT void Trim (const Standard_Real First, const Standard_Real Last, const Standard_Real Tol);
|
|
|
|
//! Computes length of the curve.
|
|
Standard_EXPORT void Length();
|
|
|
|
//! Computes length of the curve segment.
|
|
Standard_EXPORT Standard_Real Length (Adaptor3d_Curve& C, const Standard_Real FirstU, const Standard_Real LasrU) const;
|
|
|
|
Standard_EXPORT Standard_Real GetLength() const;
|
|
|
|
//! returns original parameter corresponding S. if
|
|
//! Case == 1 computation is performed on myC2D1 and mySurf1,
|
|
//! otherwise it is done on myC2D2 and mySurf2.
|
|
Standard_EXPORT Standard_Real GetUParameter (Adaptor3d_Curve& C, const Standard_Real S, const Standard_Integer NumberOfCurve) const;
|
|
|
|
//! returns original parameter corresponding S.
|
|
Standard_EXPORT Standard_Real GetSParameter (const Standard_Real U) const;
|
|
|
|
//! if myCase != 1
|
|
Standard_EXPORT Standard_Boolean EvalCase1 (const Standard_Real S, const Standard_Integer Order, TColStd_Array1OfReal& Result) const;
|
|
|
|
//! if myCase != 2
|
|
Standard_EXPORT Standard_Boolean EvalCase2 (const Standard_Real S, const Standard_Integer Order, TColStd_Array1OfReal& Result) const;
|
|
|
|
//! if myCase != 3
|
|
Standard_EXPORT Standard_Boolean EvalCase3 (const Standard_Real S, const Standard_Integer Order, TColStd_Array1OfReal& Result);
|
|
|
|
|
|
|
|
|
|
DEFINE_STANDARD_RTTIEXT(Approx_CurvlinFunc,Standard_Transient)
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
Standard_EXPORT void Init();
|
|
|
|
Standard_EXPORT void Init (Adaptor3d_Curve& C, Handle(TColStd_HArray1OfReal)& Si, Handle(TColStd_HArray1OfReal)& Ui) const;
|
|
|
|
//! returns curvilinear parameter corresponding U.
|
|
Standard_EXPORT Standard_Real GetSParameter (Adaptor3d_Curve& C, const Standard_Real U, const Standard_Real Length) const;
|
|
|
|
Standard_EXPORT Standard_Boolean EvalCurOnSur (const Standard_Real S, const Standard_Integer Order, TColStd_Array1OfReal& Result, const Standard_Integer NumberOfCurve) const;
|
|
|
|
Handle(Adaptor3d_Curve) myC3D;
|
|
Handle(Adaptor2d_Curve2d) myC2D1;
|
|
Handle(Adaptor2d_Curve2d) myC2D2;
|
|
Handle(Adaptor3d_Surface) mySurf1;
|
|
Handle(Adaptor3d_Surface) mySurf2;
|
|
Standard_Integer myCase;
|
|
Standard_Real myFirstS;
|
|
Standard_Real myLastS;
|
|
Standard_Real myFirstU1;
|
|
Standard_Real myLastU1;
|
|
Standard_Real myFirstU2;
|
|
Standard_Real myLastU2;
|
|
Standard_Real myLength;
|
|
Standard_Real myLength1;
|
|
Standard_Real myLength2;
|
|
Standard_Real myTolLen;
|
|
Standard_Real myPrevS;
|
|
Standard_Real myPrevU;
|
|
Handle(TColStd_HArray1OfReal) myUi_1;
|
|
Handle(TColStd_HArray1OfReal) mySi_1;
|
|
Handle(TColStd_HArray1OfReal) myUi_2;
|
|
Handle(TColStd_HArray1OfReal) mySi_2;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _Approx_CurvlinFunc_HeaderFile
|