0032630: Coding - get rid of unsused forward declarations [BinMDF to IFSelect]
[occt.git] / src / GeomFill / GeomFill_LocationLaw.hxx
CommitLineData
42cf5bc1 1// Created on: 1997-11-20
2// Created by: Philippe MANGIN
3// Copyright (c) 1997-1999 Matra Datavision
4// Copyright (c) 1999-2014 OPEN CASCADE SAS
5//
6// This file is part of Open CASCADE Technology software library.
7//
8// This library is free software; you can redistribute it and/or modify it under
9// the terms of the GNU Lesser General Public License version 2.1 as published
10// by the Free Software Foundation, with special exception defined in the file
11// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12// distribution for complete text of the license and disclaimer of any warranty.
13//
14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
16
17#ifndef _GeomFill_LocationLaw_HeaderFile
18#define _GeomFill_LocationLaw_HeaderFile
19
c22b52d6 20#include <Adaptor3d_Curve.hxx>
21#include <GeomAbs_Shape.hxx>
22#include <GeomFill_PipeError.hxx>
42cf5bc1 23#include <TColgp_Array1OfPnt2d.hxx>
24#include <TColgp_Array1OfVec2d.hxx>
42cf5bc1 25#include <TColStd_Array1OfReal.hxx>
c22b52d6 26
42cf5bc1 27class gp_Mat;
28class gp_Vec;
29class gp_Pnt;
30
42cf5bc1 31class GeomFill_LocationLaw;
25e59720 32DEFINE_STANDARD_HANDLE(GeomFill_LocationLaw, Standard_Transient)
42cf5bc1 33
34//! To define location law in Sweeping location is --
35//! defined by an Matrix M and an Vector V, and
36//! transform an point P in MP+V.
25e59720 37class GeomFill_LocationLaw : public Standard_Transient
42cf5bc1 38{
39
40public:
41
42
c22b52d6 43 Standard_EXPORT virtual void SetCurve (const Handle(Adaptor3d_Curve)& C) = 0;
42cf5bc1 44
c22b52d6 45 Standard_EXPORT virtual const Handle(Adaptor3d_Curve)& GetCurve() const = 0;
42cf5bc1 46
47 //! Set a transformation Matrix like the law M(t) become
48 //! Mat * M(t)
49 Standard_EXPORT virtual void SetTrsf (const gp_Mat& Transfo) = 0;
50
51 Standard_EXPORT virtual Handle(GeomFill_LocationLaw) Copy() const = 0;
52
53 //! compute Location
54 Standard_EXPORT virtual Standard_Boolean D0 (const Standard_Real Param, gp_Mat& M, gp_Vec& V) = 0;
55
56 //! compute Location and 2d points
57 Standard_EXPORT virtual Standard_Boolean D0 (const Standard_Real Param, gp_Mat& M, gp_Vec& V, TColgp_Array1OfPnt2d& Poles2d) = 0;
58
59 //! compute location 2d points and associated
60 //! first derivatives.
a25d5aaa 61 //! Warning : It used only for C1 or C2 approximation
42cf5bc1 62 Standard_EXPORT virtual Standard_Boolean D1 (const Standard_Real Param, gp_Mat& M, gp_Vec& V, gp_Mat& DM, gp_Vec& DV, TColgp_Array1OfPnt2d& Poles2d, TColgp_Array1OfVec2d& DPoles2d);
63
64 //! compute location 2d points and associated
65 //! first and seconde derivatives.
a25d5aaa 66 //! Warning : It used only for C2 approximation
42cf5bc1 67 Standard_EXPORT virtual Standard_Boolean D2 (const Standard_Real Param, gp_Mat& M, gp_Vec& V, gp_Mat& DM, gp_Vec& DV, gp_Mat& D2M, gp_Vec& D2V, TColgp_Array1OfPnt2d& Poles2d, TColgp_Array1OfVec2d& DPoles2d, TColgp_Array1OfVec2d& D2Poles2d);
68
69 //! get the number of 2d curves (Restrictions + Traces)
70 //! to approximate.
71 Standard_EXPORT Standard_Integer Nb2dCurves() const;
72
73 //! Say if the first restriction is defined in this class.
74 //! If it is true the first element of poles array in
75 //! D0,D1,D2... Correspond to this restriction.
76 //! Returns Standard_False (default implementation)
77 Standard_EXPORT virtual Standard_Boolean HasFirstRestriction() const;
78
79 //! Say if the last restriction is defined in this class.
80 //! If it is true the last element of poles array in
81 //! D0,D1,D2... Correspond to this restriction.
82 //! Returns Standard_False (default implementation)
83 Standard_EXPORT virtual Standard_Boolean HasLastRestriction() const;
84
21c7c457 85 //! Give the number of trace (Curves 2d which are not restriction)
42cf5bc1 86 //! Returns 0 (default implementation)
87 Standard_EXPORT virtual Standard_Integer TraceNumber() const;
88
89 //! Give a status to the Law
90 //! Returns PipeOk (default implementation)
91 Standard_EXPORT virtual GeomFill_PipeError ErrorStatus() const;
92
93 //! Returns the number of intervals for continuity
94 //! <S>.
95 //! May be one if Continuity(me) >= <S>
96 Standard_EXPORT virtual Standard_Integer NbIntervals (const GeomAbs_Shape S) const = 0;
97
98 //! Stores in <T> the parameters bounding the intervals
99 //! of continuity <S>.
100 //!
21c7c457 101 //! The array must provide enough room to accommodate
42cf5bc1 102 //! for the parameters. i.e. T.Length() > NbIntervals()
103 Standard_EXPORT virtual void Intervals (TColStd_Array1OfReal& T, const GeomAbs_Shape S) const = 0;
104
105 //! Sets the bounds of the parametric interval on
106 //! the function
107 //! This determines the derivatives in these values if the
108 //! function is not Cn.
109 Standard_EXPORT virtual void SetInterval (const Standard_Real First, const Standard_Real Last) = 0;
110
111 //! Gets the bounds of the parametric interval on
112 //! the function
113 Standard_EXPORT virtual void GetInterval (Standard_Real& First, Standard_Real& Last) const = 0;
114
115 //! Gets the bounds of the function parametric domain.
116 //! Warning: This domain it is not modified by the
117 //! SetValue method
118 Standard_EXPORT virtual void GetDomain (Standard_Real& First, Standard_Real& Last) const = 0;
119
120 //! Returns the resolutions in the sub-space 2d <Index>
121 //! This information is usfull to find an good tolerance in
122 //! 2d approximation.
123 Standard_EXPORT virtual void Resolution (const Standard_Integer Index, const Standard_Real Tol, Standard_Real& TolU, Standard_Real& TolV) const;
124
a25d5aaa 125 //! Is useful, if (me) have to run numerical
42cf5bc1 126 //! algorithm to perform D0, D1 or D2
127 //! The default implementation make nothing.
128 Standard_EXPORT virtual void SetTolerance (const Standard_Real Tol3d, const Standard_Real Tol2d);
129
130 //! Get the maximum Norm of the matrix-location part. It
131 //! is usful to find an good Tolerance to approx M(t).
132 Standard_EXPORT virtual Standard_Real GetMaximalNorm() = 0;
133
134 //! Get average value of M(t) and V(t) it is usfull to
135 //! make fast approximation of rational surfaces.
136 Standard_EXPORT virtual void GetAverageLaw (gp_Mat& AM, gp_Vec& AV) = 0;
137
138 //! Say if the Location Law, is an translation of Location
139 //! The default implementation is " returns False ".
140 Standard_EXPORT virtual Standard_Boolean IsTranslation (Standard_Real& Error) const;
141
142 //! Say if the Location Law, is a rotation of Location
143 //! The default implementation is " returns False ".
144 Standard_EXPORT virtual Standard_Boolean IsRotation (Standard_Real& Error) const;
145
146 Standard_EXPORT virtual void Rotation (gp_Pnt& Center) const;
147
148
149
150
25e59720 151 DEFINE_STANDARD_RTTIEXT(GeomFill_LocationLaw,Standard_Transient)
42cf5bc1 152
153protected:
154
155
156
157
158private:
159
160
161
162
163};
164
165
166
167
168
169
170
171#endif // _GeomFill_LocationLaw_HeaderFile