0031939: Coding - correction of spelling errors in comments [part 3]
[occt.git] / src / GeomFill / GeomFill_ConstantBiNormal.hxx
CommitLineData
42cf5bc1 1// Created on: 1997-12-09
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_ConstantBiNormal_HeaderFile
18#define _GeomFill_ConstantBiNormal_HeaderFile
19
20#include <Standard.hxx>
21#include <Standard_Type.hxx>
22
23#include <gp_Vec.hxx>
24#include <GeomFill_TrihedronLaw.hxx>
25#include <Standard_Boolean.hxx>
26#include <Standard_Real.hxx>
27#include <Standard_Integer.hxx>
28#include <GeomAbs_Shape.hxx>
29#include <TColStd_Array1OfReal.hxx>
30class GeomFill_Frenet;
31class Standard_OutOfRange;
32class Standard_ConstructionError;
33class gp_Dir;
34class GeomFill_TrihedronLaw;
42cf5bc1 35class gp_Vec;
36
37
38class GeomFill_ConstantBiNormal;
39DEFINE_STANDARD_HANDLE(GeomFill_ConstantBiNormal, GeomFill_TrihedronLaw)
40
41//! Defined an Trihedron Law where the BiNormal, is fixed
42class GeomFill_ConstantBiNormal : public GeomFill_TrihedronLaw
43{
44
45public:
46
47
48 Standard_EXPORT GeomFill_ConstantBiNormal(const gp_Dir& BiNormal);
49
50 Standard_EXPORT virtual Handle(GeomFill_TrihedronLaw) Copy() const Standard_OVERRIDE;
51
c22b52d6 52 Standard_EXPORT virtual void SetCurve (const Handle(Adaptor3d_Curve)& C) Standard_OVERRIDE;
42cf5bc1 53
54 //! Computes Triedrhon on curve at parameter <Param>
55 Standard_EXPORT virtual Standard_Boolean D0 (const Standard_Real Param, gp_Vec& Tangent, gp_Vec& Normal, gp_Vec& BiNormal) Standard_OVERRIDE;
56
57 //! Computes Triedrhon and derivative Trihedron on curve
58 //! at parameter <Param>
a25d5aaa 59 //! Warning : It used only for C1 or C2 approximation
42cf5bc1 60 Standard_EXPORT virtual Standard_Boolean D1 (const Standard_Real Param, gp_Vec& Tangent, gp_Vec& DTangent, gp_Vec& Normal, gp_Vec& DNormal, gp_Vec& BiNormal, gp_Vec& DBiNormal) Standard_OVERRIDE;
61
62 //! compute Trihedron on curve
63 //! first and seconde derivatives.
a25d5aaa 64 //! Warning : It used only for C2 approximation
42cf5bc1 65 Standard_EXPORT virtual Standard_Boolean D2 (const Standard_Real Param, gp_Vec& Tangent, gp_Vec& DTangent, gp_Vec& D2Tangent, gp_Vec& Normal, gp_Vec& DNormal, gp_Vec& D2Normal, gp_Vec& BiNormal, gp_Vec& DBiNormal, gp_Vec& D2BiNormal) Standard_OVERRIDE;
66
67 //! Returns the number of intervals for continuity
68 //! <S>.
69 //! May be one if Continuity(me) >= <S>
70 Standard_EXPORT virtual Standard_Integer NbIntervals (const GeomAbs_Shape S) const Standard_OVERRIDE;
71
72 //! Stores in <T> the parameters bounding the intervals
73 //! of continuity <S>.
74 //!
21c7c457 75 //! The array must provide enough room to accommodate
42cf5bc1 76 //! for the parameters. i.e. T.Length() > NbIntervals()
77 Standard_EXPORT virtual void Intervals (TColStd_Array1OfReal& T, const GeomAbs_Shape S) const Standard_OVERRIDE;
78
79 //! Gets average value of Tangent(t) and Normal(t) it is usfull to
80 //! make fast approximation of rational surfaces.
81 Standard_EXPORT virtual void GetAverageLaw (gp_Vec& ATangent, gp_Vec& ANormal, gp_Vec& ABiNormal) Standard_OVERRIDE;
82
83 //! Says if the law is Constant.
84 Standard_EXPORT virtual Standard_Boolean IsConstant() const Standard_OVERRIDE;
85
86 //! Return True.
87 Standard_EXPORT virtual Standard_Boolean IsOnlyBy3dCurve() const Standard_OVERRIDE;
88
89
90
91
92efcf78 92 DEFINE_STANDARD_RTTIEXT(GeomFill_ConstantBiNormal,GeomFill_TrihedronLaw)
42cf5bc1 93
94protected:
95
96
97
98
99private:
100
101
102 gp_Vec BN;
103 Handle(GeomFill_Frenet) frenet;
104
105
106};
107
108
109
110
111
112
113
114#endif // _GeomFill_ConstantBiNormal_HeaderFile