0031687: Draw Harness, ViewerTest - extend command vrenderparams with option updating...
[occt.git] / src / GCPnts / GCPnts_UniformAbscissa.cxx
1 // Copyright (c) 1995-1999 Matra Datavision
2 // Copyright (c) 1999-2014 OPEN CASCADE SAS
3 //
4 // This file is part of Open CASCADE Technology software library.
5 //
6 // This library is free software; you can redistribute it and/or modify it under
7 // the terms of the GNU Lesser General Public License version 2.1 as published
8 // by the Free Software Foundation, with special exception defined in the file
9 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
10 // distribution for complete text of the license and disclaimer of any warranty.
11 //
12 // Alternatively, this file may be used under the terms of Open CASCADE
13 // commercial license or contractual agreement.
14
15 #include <StdFail_NotDone.hxx>
16 #include <Standard_DomainError.hxx>
17 #include <Standard_OutOfRange.hxx>
18 #include <Standard_ConstructionError.hxx>
19 #include <GCPnts_UniformAbscissa.hxx>
20 #include <Adaptor3d_Curve.hxx>
21 #include <Adaptor2d_Curve2d.hxx>
22
23 //=======================================================================
24 //function : GCPnts_UniformAbscissa
25 //purpose  : 
26 //=======================================================================
27
28 GCPnts_UniformAbscissa::GCPnts_UniformAbscissa ()
29      :myDone(Standard_False),
30          myNbPoints(0),
31          myAbscissa(0.)
32 {
33
34
35 #include <Geom_BezierCurve.hxx>
36 #include <Geom_BSplineCurve.hxx>
37
38 #define TheCurve                 Adaptor3d_Curve
39 #define Handle_TheBezierCurve   Handle(Geom_BezierCurve)
40 #define Handle_TheBSplineCurve  Handle(Geom_BSplineCurve)
41
42 #include "GCPnts_UniformAbscissa.pxx"
43
44 #undef TheCurve
45 #undef Handle_TheBezierCurve
46 #undef Handle_TheBSplineCurve
47
48 #include <Geom2d_BezierCurve.hxx>
49 #include <Geom2d_BSplineCurve.hxx>
50
51 #define TheCurve                 Adaptor2d_Curve2d
52 #define Handle_TheBezierCurve   Handle(Geom2d_BezierCurve)
53 #define Handle_TheBSplineCurve  Handle(Geom2d_BSplineCurve)
54
55 #include "GCPnts_UniformAbscissa.pxx"
56
57
58