blob: e6dcb3874169a9a938553ad988cb00bb714cc705 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
// File: PGeom2d_BezierCurve.cxx
// Created: Wed Mar 3 15:44:11 1993
// Author: Philippe DAUTRY
// <fid@phylox>
// Copyright: Matra Datavision 1993
#include <PGeom2d_BezierCurve.ixx>
//=======================================================================
//function : PGeom2d_BezierCurve
//purpose :
//=======================================================================
PGeom2d_BezierCurve::PGeom2d_BezierCurve()
{}
//=======================================================================
//function : PGeom2d_BezierCurve
//purpose :
//=======================================================================
PGeom2d_BezierCurve::PGeom2d_BezierCurve
(const Handle(PColgp_HArray1OfPnt2d)& aPoles,
const Handle(PColStd_HArray1OfReal)& aWeights,
const Standard_Boolean aRational) :
rational(aRational), poles(aPoles),
weights(aWeights)
{}
//=======================================================================
//function : Rational
//purpose :
//=======================================================================
void PGeom2d_BezierCurve::Rational(const Standard_Boolean aRational)
{ rational = aRational; }
//=======================================================================
//function : Rational
//purpose :
//=======================================================================
Standard_Boolean PGeom2d_BezierCurve::Rational() const
{ return rational; }
//=======================================================================
//function : Poles
//purpose :
//=======================================================================
void PGeom2d_BezierCurve::Poles
(const Handle(PColgp_HArray1OfPnt2d)& aPoles)
{ poles = aPoles; }
//=======================================================================
//function : Poles
//purpose :
//=======================================================================
Handle(PColgp_HArray1OfPnt2d) PGeom2d_BezierCurve::Poles() const
{ return poles; }
//=======================================================================
//function : Weights
//purpose :
//=======================================================================
void PGeom2d_BezierCurve::Weights
(const Handle(PColStd_HArray1OfReal)& aWeights)
{ weights = aWeights; }
//=======================================================================
//function : Weights
//purpose :
//=======================================================================
Handle(PColStd_HArray1OfReal)
PGeom2d_BezierCurve::Weights() const
{ return weights; }
|