0024624: Lost word in license statement in source files
[occt.git] / src / Geom2d / Geom2d_Point.cdl
1 -- Created on: 1993-03-24
2 -- Created by: JCV
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 deferred class Point from Geom2d inherits Geometry from Geom2d
18
19         --- Purpose : The abstract class Point describes the common
20         -- behavior of geometric points in 2D space.
21         -- The Geom2d package also provides the concrete
22         -- class Geom2d_CartesianPoint.
23
24 uses Pnt2d from gp
25
26 is
27
28
29   Coord (me; X, Y : out Real) 
30         --- Purpose : returns the Coordinates of <me>.
31      is deferred;
32
33
34   Pnt2d (me)  returns Pnt2d
35         --- Purpose : returns a non persistent copy of <me>
36      is deferred;
37
38
39   X (me)  returns Real
40         --- Purpose : returns the X coordinate of <me>.
41      is deferred;
42
43
44   Y (me)  returns Real
45         --- Purpose : returns  the Y coordinate of <me>.
46      is deferred;
47
48
49
50   Distance (me; Other : Point)  returns Real;
51         --- Purpose : computes the distance between <me> and <Other>.
52
53   
54   SquareDistance (me; Other : Point)  returns Real;
55         --- Purpose : computes the square distance between <me> and <Other>.
56
57 end;
58