9bd1ecad655f1af93f62eb463c461682eb166fcf
[occt.git] / src / PGeom / PGeom_BezierCurve.cxx
1 // Created on: 1993-03-03
2 // Created by: Philippe DAUTRY
3 // Copyright (c) 1993-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 #include <PGeom_BezierCurve.ixx>
18
19 //=======================================================================
20 //function : PGeom_BezierCurve
21 //purpose  : 
22 //=======================================================================
23
24 PGeom_BezierCurve::PGeom_BezierCurve()
25 {}
26
27
28 //=======================================================================
29 //function : PGeom_BezierCurve
30 //purpose  : 
31 //=======================================================================
32
33 PGeom_BezierCurve::PGeom_BezierCurve
34   (const Handle(PColgp_HArray1OfPnt)& aPoles,
35    const Handle(PColStd_HArray1OfReal)& aWeights,
36    const Standard_Boolean aRational) :
37    rational(aRational),
38    poles(aPoles),
39    weights(aWeights)
40 {}
41
42
43 //=======================================================================
44 //function : Rational
45 //purpose  : 
46 //=======================================================================
47
48 void  PGeom_BezierCurve::Rational(const Standard_Boolean aRational)
49 { rational = aRational; }
50
51
52 //=======================================================================
53 //function : Rational
54 //purpose  : 
55 //=======================================================================
56
57 Standard_Boolean  PGeom_BezierCurve::Rational() const 
58 { return rational; }
59
60
61 //=======================================================================
62 //function : Poles
63 //purpose  : 
64 //=======================================================================
65
66 void  PGeom_BezierCurve::Poles
67   (const Handle(PColgp_HArray1OfPnt)& aPoles)
68 { poles = aPoles; }
69
70
71 //=======================================================================
72 //function : Poles
73 //purpose  : 
74 //=======================================================================
75
76 Handle(PColgp_HArray1OfPnt)  PGeom_BezierCurve::Poles() const 
77 { return poles; }
78
79
80 //=======================================================================
81 //function : Weights
82 //purpose  : 
83 //=======================================================================
84
85 void  PGeom_BezierCurve::Weights
86   (const Handle(PColStd_HArray1OfReal)& aWeights)
87 { weights = aWeights; }
88
89
90 //=======================================================================
91 //function : Weights
92 //purpose  : 
93 //=======================================================================
94
95 Handle(PColStd_HArray1OfReal)
96      PGeom_BezierCurve::Weights() const 
97 { return weights; }