blob: 7e68549b56e0e63af8fb9dadb73ce380b18e68ff (
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
88
89
90
91
92
93
94
95
96
|
// 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_CartesianPoint_HeaderFile
#define _Geom2d_CartesianPoint_HeaderFile
#ifndef _Standard_HeaderFile
#include <Standard.hxx>
#endif
#ifndef _Standard_DefineHandle_HeaderFile
#include <Standard_DefineHandle.hxx>
#endif
#ifndef _Handle_Geom2d_CartesianPoint_HeaderFile
#include <Handle_Geom2d_CartesianPoint.hxx>
#endif
#ifndef _gp_Pnt2d_HeaderFile
#include <gp_Pnt2d.hxx>
#endif
#ifndef _Geom2d_Point_HeaderFile
#include <Geom2d_Point.hxx>
#endif
#ifndef _Standard_Real_HeaderFile
#include <Standard_Real.hxx>
#endif
#ifndef _Handle_Geom2d_Geometry_HeaderFile
#include <Handle_Geom2d_Geometry.hxx>
#endif
class gp_Pnt2d;
class gp_Trsf2d;
class Geom2d_Geometry;
//! Describes a point in 2D space. A <br>
//! Geom2d_CartesianPoint is defined by a gp_Pnt2d <br>
//! point, with its two Cartesian coordinates X and Y. <br>
class Geom2d_CartesianPoint : public Geom2d_Point {
public:
//! Returns a persistent copy of P. <br>
Standard_EXPORT Geom2d_CartesianPoint(const gp_Pnt2d& P);
Standard_EXPORT Geom2d_CartesianPoint(const Standard_Real X,const Standard_Real Y);
//! Set <me> to X, Y coordinates. <br>
Standard_EXPORT void SetCoord(const Standard_Real X,const Standard_Real Y) ;
//! Set <me> to P.X(), P.Y() coordinates. <br>
Standard_EXPORT void SetPnt2d(const gp_Pnt2d& P) ;
//! Changes the X coordinate of me. <br>
Standard_EXPORT void SetX(const Standard_Real X) ;
//! Changes the Y coordinate of me. <br>
Standard_EXPORT void SetY(const Standard_Real Y) ;
//! Returns the coordinates of <me>. <br>
Standard_EXPORT void Coord(Standard_Real& X,Standard_Real& Y) const;
//! Returns a non persistent cartesian point with <br>
//! the same coordinates as <me>. <br>
//! -C++: return const& <br>
Standard_EXPORT gp_Pnt2d Pnt2d() const;
//! Returns the X coordinate of <me>. <br>
Standard_EXPORT Standard_Real X() const;
//! Returns the Y coordinate of <me>. <br>
Standard_EXPORT Standard_Real Y() const;
Standard_EXPORT void Transform(const gp_Trsf2d& T) ;
Standard_EXPORT Handle_Geom2d_Geometry Copy() const;
DEFINE_STANDARD_RTTI(Geom2d_CartesianPoint)
protected:
private:
gp_Pnt2d gpPnt2d;
};
// other Inline functions and methods (like "C++: function call" methods)
#endif
|