summaryrefslogtreecommitdiff
path: root/inc/Geom2d_BoundedCurve.hxx
blob: 7bf11c120a1ca42a26a19eb663c390228febf633 (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
// This file is generated by WOK (CPPExt).
// Please do not edit this file; modify original file instead.
// The copyright and license terms as defined for the original file apply to 
// this header file considered to be the "object code" form of the original source.

#ifndef _Geom2d_BoundedCurve_HeaderFile
#define _Geom2d_BoundedCurve_HeaderFile

#ifndef _Standard_HeaderFile
#include <Standard.hxx>
#endif
#ifndef _Standard_DefineHandle_HeaderFile
#include <Standard_DefineHandle.hxx>
#endif
#ifndef _Handle_Geom2d_BoundedCurve_HeaderFile
#include <Handle_Geom2d_BoundedCurve.hxx>
#endif

#ifndef _Geom2d_Curve_HeaderFile
#include <Geom2d_Curve.hxx>
#endif
class gp_Pnt2d;


//! The abstract class BoundedCurve describes the <br>
//! common behavior of bounded curves in 2D space. A <br>
//! bounded curve is limited by two finite values of the <br>
//! parameter, termed respectively "first parameter" and <br>
//! "last parameter". The "first parameter" gives the "start <br>
//! point" of the bounded curve, and the "last parameter" <br>
//! gives the "end point" of the bounded curve. <br>
//! The length of a bounded curve is finite. <br>
//! The Geom2d package provides three concrete <br>
//! classes of bounded curves: <br>
//! - two frequently used mathematical formulations of complex curves: <br>
//!   - Geom2d_BezierCurve, <br>
//!   - Geom2d_BSplineCurve, and <br>
//! - Geom2d_TrimmedCurve to trim a curve, i.e. to <br>
//!   only take part of the curve limited by two values of <br>
//!   the parameter of the basis curve. <br>
class Geom2d_BoundedCurve : public Geom2d_Curve {

public:

  
//!  Returns the end point of the curve. <br>
//!  The end point is the value of the curve for the <br>
//!  "LastParameter" of the curve. <br>
  Standard_EXPORT   virtual  gp_Pnt2d EndPoint() const = 0;
  
//!  Returns the start point of the curve. <br>
//!  The start point is the value of the curve for the <br>
//!  "FirstParameter" of the curve. <br>
  Standard_EXPORT   virtual  gp_Pnt2d StartPoint() const = 0;




  DEFINE_STANDARD_RTTI(Geom2d_BoundedCurve)

protected:




private: 




};





// other Inline functions and methods (like "C++: function call" methods)


#endif