0024275: Cppcheck warnings on uninitialized class members
[occt.git] / src / GCPnts / GCPnts_QuasiUniformAbscissa.cxx
... / ...
CommitLineData
1// Copyright (c) 1996-1999 Matra Datavision
2// Copyright (c) 1999-2012 OPEN CASCADE SAS
3//
4// The content of this file is subject to the Open CASCADE Technology Public
5// License Version 6.5 (the "License"). You may not use the content of this file
6// except in compliance with the License. Please obtain a copy of the License
7// at http://www.opencascade.org and read it completely before using this file.
8//
9// The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
10// main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
11//
12// The Original Code and all software distributed under the License is
13// distributed on an "AS IS" basis, without warranty of any kind, and the
14// Initial Developer hereby disclaims all such warranties, including without
15// limitation, any warranties of merchantability, fitness for a particular
16// purpose or non-infringement. Please see the License for the specific terms
17// and conditions governing the rights and limitations under the License.
18
19//#include <GCPnts_QuasiUniformAbscissa.ixx>
20
21#include <StdFail_NotDone.hxx>
22#include <Standard_DomainError.hxx>
23#include <Standard_OutOfRange.hxx>
24#include <Standard_ConstructionError.hxx>
25#include <GCPnts_QuasiUniformAbscissa.hxx>
26#include <GCPnts_UniformAbscissa.hxx>
27#include <Adaptor3d_Curve.hxx>
28#include <Adaptor2d_Curve2d.hxx>
29#include <TColgp_Array1OfPnt2d.hxx>
30#include <gp_Pnt2d.hxx>
31#include <TColgp_Array1OfPnt.hxx>
32#include <gp_Pnt.hxx>
33
34#ifdef DEB
35//#include <DrawTrSurf.hxx>
36
37//static Standard_Integer compteur = 0;
38#endif
39
40//=======================================================================
41//function : GCPnts_QuasiUniformAbscissa
42//purpose :
43//=======================================================================
44
45GCPnts_QuasiUniformAbscissa::GCPnts_QuasiUniformAbscissa ()
46 :myDone(Standard_False),
47 myNbPoints(0)
48{
49}
50
51#include <Geom_BezierCurve.hxx>
52#include <Geom_BSplineCurve.hxx>
53
54#define TheCurve Adaptor3d_Curve
55#define Handle_TheBezierCurve Handle(Geom_BezierCurve)
56#define Handle_TheBSplineCurve Handle(Geom_BSplineCurve)
57#define TheArray1OfPnt TColgp_Array1OfPnt
58#define ThePnt gp_Pnt
59
60#include <GCPnts_QuasiUniformAbscissa.gxx>
61
62#undef TheCurve
63#undef Handle_TheBezierCurve
64#undef Handle_TheBSplineCurve
65#undef TheArray1OfPnt
66#undef ThePnt
67
68#include <Geom2d_BezierCurve.hxx>
69#include <Geom2d_BSplineCurve.hxx>
70
71#define TheCurve Adaptor2d_Curve2d
72#define Handle_TheBezierCurve Handle(Geom2d_BezierCurve)
73#define Handle_TheBSplineCurve Handle(Geom2d_BSplineCurve)
74#define TheArray1OfPnt TColgp_Array1OfPnt2d
75#define ThePnt gp_Pnt2d
76
77#include <GCPnts_QuasiUniformAbscissa.gxx>
78
79
80