// Created on: 1998-08-20 // Created by: Philippe MANGIN // 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 _BRepAdaptor_CompCurve_HeaderFile #define _BRepAdaptor_CompCurve_HeaderFile #include #include #include #include #include #include #include #include #include #include #include #include #include class TopoDS_Edge; class gp_Pnt; class gp_Vec; class gp_Lin; class gp_Circ; class gp_Elips; class gp_Hypr; class gp_Parab; class Geom_BezierCurve; class Geom_BSplineCurve; //! The Curve from BRepAdaptor allows to use a Wire //! of the BRep topology like a 3D curve. //! Warning: With this class of curve, C0 and C1 continuities //! are not assumed. So be careful with some algorithm! //! Please note that BRepAdaptor_CompCurve cannot be //! periodic curve at all (even if it contains single //! periodic edge). //! //! BRepAdaptor_CompCurve can only work on valid wires where all edges are //! connected to each other to make a chain. class BRepAdaptor_CompCurve : public Adaptor3d_Curve { DEFINE_STANDARD_RTTIEXT(BRepAdaptor_CompCurve, Adaptor3d_Curve) public: //! Creates an undefined Curve with no Wire loaded. Standard_EXPORT BRepAdaptor_CompCurve(); Standard_EXPORT BRepAdaptor_CompCurve(const TopoDS_Wire& W, const bool KnotByCurvilinearAbcissa = false); //! Creates a Curve to access the geometry of edge . Standard_EXPORT BRepAdaptor_CompCurve(const TopoDS_Wire& W, const bool KnotByCurvilinearAbcissa, const double First, const double Last, const double Tol); //! Shallow copy of adaptor. Standard_EXPORT occ::handle ShallowCopy() const override; //! Sets the wire . Standard_EXPORT void Initialize(const TopoDS_Wire& W, const bool KnotByCurvilinearAbcissa); //! Sets wire and trimmed parameter. Standard_EXPORT void Initialize(const TopoDS_Wire& W, const bool KnotByCurvilinearAbcissa, const double First, const double Last, const double Tol); //! Returns the wire. Standard_EXPORT const TopoDS_Wire& Wire() const; //! returns an edge and one parameter on them //! corresponding to the parameter U. Standard_EXPORT void Edge(const double U, TopoDS_Edge& E, double& UonE) const; Standard_EXPORT double FirstParameter() const override; Standard_EXPORT double LastParameter() const override; Standard_EXPORT GeomAbs_Shape Continuity() const override; //! Returns the number of intervals for continuity //! . May be one if Continuity(me) >= Standard_EXPORT int NbIntervals(const GeomAbs_Shape S) const override; //! Stores in the parameters bounding the intervals //! of continuity . //! //! The array must provide enough room to accommodate //! for the parameters. i.e. T.Length() > NbIntervals() Standard_EXPORT void Intervals(NCollection_Array1& T, const GeomAbs_Shape S) const override; //! Returns a curve equivalent of between //! parameters and . is used to //! test for 3d points confusion. //! If >= Standard_EXPORT occ::handle Trim(const double First, const double Last, const double Tol) const override; Standard_EXPORT bool IsClosed() const override; Standard_EXPORT bool IsPeriodic() const override; Standard_EXPORT double Period() const override; //! Computes the point of parameter theU on the curve. [[nodiscard]] Standard_EXPORT gp_Pnt EvalD0(const double theU) const final; //! Computes the point of parameter theU on the curve with its first derivative. //! Raised if the continuity of the current interval is not C1. [[nodiscard]] Standard_EXPORT Geom_Curve::ResD1 EvalD1(const double theU) const final; //! Returns the point and the first and second derivatives at parameter theU. //! Raised if the continuity of the current interval is not C2. [[nodiscard]] Standard_EXPORT Geom_Curve::ResD2 EvalD2(const double theU) const final; //! Returns the point and the first, second and third derivatives at parameter theU. //! Raised if the continuity of the current interval is not C3. [[nodiscard]] Standard_EXPORT Geom_Curve::ResD3 EvalD3(const double theU) const final; //! Returns the derivative of order theN at parameter theU. //! Raised if the continuity of the current interval is not CN. //! Raised if theN < 1. [[nodiscard]] Standard_EXPORT gp_Vec EvalDN(const double theU, const int theN) const final; //! returns the parametric resolution Standard_EXPORT double Resolution(const double R3d) const override; Standard_EXPORT GeomAbs_CurveType GetType() const override; Standard_EXPORT gp_Lin Line() const override; Standard_EXPORT gp_Circ Circle() const override; Standard_EXPORT gp_Elips Ellipse() const override; Standard_EXPORT gp_Hypr Hyperbola() const override; Standard_EXPORT gp_Parab Parabola() const override; Standard_EXPORT int Degree() const override; Standard_EXPORT bool IsRational() const override; Standard_EXPORT int NbPoles() const override; Standard_EXPORT int NbKnots() const override; Standard_EXPORT occ::handle Bezier() const override; Standard_EXPORT occ::handle BSpline() const override; private: Standard_EXPORT void Prepare(double& W, double& D, int& ind) const; Standard_EXPORT void InvPrepare(const int ind, double& F, double& D) const; TopoDS_Wire myWire; double TFirst; double TLast; double PTol; occ::handle> myCurves; occ::handle> myKnots; int CurIndex; bool Forward; bool IsbyAC; }; #endif // _BRepAdaptor_CompCurve_HeaderFile