0030153: Visualization, TKOpenGl - AIS_ColoredShape::SynchronizeAspects() doesn't...
[occt.git] / src / GeomFill / GeomFill_CurveAndTrihedron.hxx
CommitLineData
42cf5bc1 1// Created on: 1997-12-02
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_CurveAndTrihedron_HeaderFile
18#define _GeomFill_CurveAndTrihedron_HeaderFile
19
20#include <Standard.hxx>
21#include <Standard_Type.hxx>
22
23#include <Standard_Boolean.hxx>
24#include <gp_Pnt.hxx>
25#include <gp_Vec.hxx>
26#include <gp_Mat.hxx>
27#include <GeomFill_LocationLaw.hxx>
28#include <Standard_Real.hxx>
29#include <TColgp_Array1OfPnt2d.hxx>
30#include <TColgp_Array1OfVec2d.hxx>
31#include <Standard_Integer.hxx>
32#include <GeomAbs_Shape.hxx>
33#include <TColStd_Array1OfReal.hxx>
34class GeomFill_TrihedronLaw;
35class Adaptor3d_HCurve;
36class Standard_OutOfRange;
37class gp_Mat;
38class GeomFill_LocationLaw;
39class gp_Vec;
40class gp_Pnt;
41
42
43class GeomFill_CurveAndTrihedron;
44DEFINE_STANDARD_HANDLE(GeomFill_CurveAndTrihedron, GeomFill_LocationLaw)
45
46//! Define location law with an TrihedronLaw and an
47//! curve
48//! Definition Location is :
49//! transformed section coordinates in (Curve(v)),
50//! (Normal(v), BiNormal(v), Tangente(v))) systeme are
51//! the same like section shape coordinates in
52//! (O,(OX, OY, OZ)) systeme.
53class GeomFill_CurveAndTrihedron : public GeomFill_LocationLaw
54{
55
56public:
57
58
59 Standard_EXPORT GeomFill_CurveAndTrihedron(const Handle(GeomFill_TrihedronLaw)& Trihedron);
60
61 Standard_EXPORT virtual void SetCurve (const Handle(Adaptor3d_HCurve)& C) Standard_OVERRIDE;
62
63 Standard_EXPORT virtual const Handle(Adaptor3d_HCurve)& GetCurve() const Standard_OVERRIDE;
64
65 //! Set a transformation Matrix like the law M(t) become
66 //! Mat * M(t)
67 Standard_EXPORT virtual void SetTrsf (const gp_Mat& Transfo) Standard_OVERRIDE;
68
69 Standard_EXPORT virtual Handle(GeomFill_LocationLaw) Copy() const Standard_OVERRIDE;
70
71 //! compute Location and 2d points
72 Standard_EXPORT virtual Standard_Boolean D0 (const Standard_Real Param, gp_Mat& M, gp_Vec& V) Standard_OVERRIDE;
73
74 //! compute Location and 2d points
75 Standard_EXPORT virtual Standard_Boolean D0 (const Standard_Real Param, gp_Mat& M, gp_Vec& V, TColgp_Array1OfPnt2d& Poles2d) Standard_OVERRIDE;
76
77 //! compute location 2d points and associated
78 //! first derivatives.
79 //! Warning : It used only for C1 or C2 aproximation
80 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) Standard_OVERRIDE;
81
82 //! compute location 2d points and associated
83 //! first and seconde derivatives.
84 //! Warning : It used only for C2 aproximation
85 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) Standard_OVERRIDE;
86
87 //! Returns the number of intervals for continuity
88 //! <S>.
89 //! May be one if Continuity(me) >= <S>
90 Standard_EXPORT virtual Standard_Integer NbIntervals (const GeomAbs_Shape S) const Standard_OVERRIDE;
91
92 //! Stores in <T> the parameters bounding the intervals
93 //! of continuity <S>.
94 //!
95 //! The array must provide enough room to accomodate
96 //! for the parameters. i.e. T.Length() > NbIntervals()
97 Standard_EXPORT virtual void Intervals (TColStd_Array1OfReal& T, const GeomAbs_Shape S) const Standard_OVERRIDE;
98
99 //! Sets the bounds of the parametric interval on
100 //! the function
101 //! This determines the derivatives in these values if the
102 //! function is not Cn.
103 Standard_EXPORT virtual void SetInterval (const Standard_Real First, const Standard_Real Last) Standard_OVERRIDE;
104
105 //! Gets the bounds of the parametric interval on
106 //! the function
107 Standard_EXPORT virtual void GetInterval (Standard_Real& First, Standard_Real& Last) const Standard_OVERRIDE;
108
109 //! Gets the bounds of the function parametric domain.
110 //! Warning: This domain it is not modified by the
111 //! SetValue method
112 Standard_EXPORT virtual void GetDomain (Standard_Real& First, Standard_Real& Last) const Standard_OVERRIDE;
113
114 //! Get the maximum Norm of the matrix-location part. It
115 //! is usful to find an good Tolerance to approx M(t).
116 Standard_EXPORT virtual Standard_Real GetMaximalNorm() Standard_OVERRIDE;
117
118 //! Get average value of M(t) and V(t) it is usfull to
119 //! make fast approximation of rational surfaces.
120 Standard_EXPORT virtual void GetAverageLaw (gp_Mat& AM, gp_Vec& AV) Standard_OVERRIDE;
121
122 //! Say if the Location Law, is an translation of Location
123 //! The default implementation is " returns False ".
124 Standard_EXPORT virtual Standard_Boolean IsTranslation (Standard_Real& Error) const Standard_OVERRIDE;
125
126 //! Say if the Location Law, is a rotation of Location
127 //! The default implementation is " returns False ".
128 Standard_EXPORT virtual Standard_Boolean IsRotation (Standard_Real& Error) const Standard_OVERRIDE;
129
130 Standard_EXPORT virtual void Rotation (gp_Pnt& Center) const Standard_OVERRIDE;
131
132
133
134
92efcf78 135 DEFINE_STANDARD_RTTIEXT(GeomFill_CurveAndTrihedron,GeomFill_LocationLaw)
42cf5bc1 136
137protected:
138
139
140
141
142private:
143
144
145 Standard_Boolean WithTrans;
146 Handle(GeomFill_TrihedronLaw) myLaw;
147 Handle(Adaptor3d_HCurve) myCurve;
148 Handle(Adaptor3d_HCurve) myTrimmed;
149 gp_Pnt Point;
150 gp_Vec V1;
151 gp_Vec V2;
152 gp_Vec V3;
153 gp_Mat Trans;
154
155
156};
157
158
159
160
161
162
163
164#endif // _GeomFill_CurveAndTrihedron_HeaderFile